Quick Installation
Creating a test instance of eCorpus using docker can be done by running this command:
docker compose -f oci://ghcr.io/holusion/e-corpus:app up
if oci artifacts are not supported on your system, use the base docker-compose.yml example provided below.
Open a browser and navigate to localhost:8000 to access the eCorpus instance.
Creating the first user account
When the application is launched, it is in “open mode”, which allows you to create a first user account via the command line. To create an account, open another terminal and run the following command:
curl -XPOST -H "Content-Type: application/json" \
-d '{
"username":"<...>",
"password":"<...>",
"email":"<...>",
"level": "admin"
}' "http://localhost:8000/users"
Replace
<...>with your desired username, password, and email address.
Other accounts can then be created via the web interface.
Going further
After creating your first user account, navigate to http://localhost:8000 and log in.
From there, you can create your first scene.
You may want to configure a reverse proxy to enable HTTPS.
If you want to edit the source code, refer to the development guide. Or configure your instance by tuning the environment variables.
To use your instance in production, you might want to set up email forwarding (allows account recovery and invite links), automated backups and an HTTPS reverse-proxy. You may also contact Holusion to buy a full-featured managed eCorpus instance.
Advanced installation
Base compose file
Copy and edit this base compose file:
name: eCorpus
services:
postgres:
image: postgres:17
restart: always
shm_size: 128mb
environment:
POSTGRES_USER: ${POSTGRES_USER:-postgres}
POSTGRES_DB: ${POSTGRES_DB:-postgres}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres} #change if it is ever susceptible to be externally accessible
healthcheck:
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"]
interval: 1s
timeout: 5s
retries: 10
volumes:
- postgres_data:/var/lib/postgresql/data/
app:
image: ghcr.io/holusion/e-corpus:main
ports:
- "8000:8000"
depends_on:
postgres:
condition: service_healthy
environment:
DATABASE_URI: postgres://${POSTGRES_USER:-postgres}:${POSTGRES_PASSWORD:-postgres}@postgres:5432/${POSTGRES_DB:-postgres}
healthcheck:
interval: 1s
timeout: 5s
retries: 10
volumes:
- app_data:/app/files
volumes:
postgres_data:
app_data:
Setup a reverse proxy
eCorpus does not handle SSL-termination. A reverse proxy should be placed in front of the instance to handle that.
The configuration’s only specific requirements are to provide a X-Forwarded-Host and a X-Forwarded-Proto header to allow eCorpus to properly write redirects.
Where applicable, client_max_body_size or its equivalent should be appropriately large.
Here is an example of a basic NGINX configuration:
server {
listen 80;
listen [::]:80;
server_name your.domain.com;
location / {
return 301 https:// your.domain.com$request_uri;
}
}
server {
server_name your.domain.com;
listen 443 ssl http2;
listen [::]:443 ssl http2;
add_header Content-Security-Policy "upgrade-insecure-requests;";
# Handle SSL certificates here
autoindex off;
client_max_body_size 100M;
proxy_buffering off;
location = /robots.txt {
log_not_found off;
access_log off;
}
location / {
#Proxy settings
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Port $server_port;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $host;
proxy_pass http://localhost:8000;
}
}
Install without Docker
eCorpus can just as easily run outside docker by connecting to an external PostgreSQL database.
eCorpus can be executed outside a container if the required utilities are present and you have access to a PostgreSQL database.
Database configuration
A PostgreSQL database (>= 15) is required. The database connection must be configured via the DATABASE_URI environment variable.
Alternatively, the set PGHOST, PGPORT, PGUSER (defaults to $USER), PGDATABASE (defaults to $USER) and PGPASSWORD (defaults to empty) can be used.
The DATABASE_URI variable may include all connection options, for example:
postgresql://user:password@localhost:5432/mydatabase
# SSL certificate authentication example:
postgres://host.docker.internal:5432/mydatabase?user=myuser&sslmode=verify-full&sslrootcert=/path/to/ca.pem&sslcert=/path/to/client-cert.pem&sslkey=/path/to/client-key.pem
# or via a Unix socket
socket:///var/run/postgresql/?db=mydatabase
Use the latest release
See the list of releases on GitHub.
curl -XGET -L https://github.com/Holusion/eCorpus/releases/download/v0.1.0/eCorpus-v0.1.0.zip
unzip eCorpus.zip
cd eCorpus
npm i --omit=dev
npm start
Optionally, configure a systemd service to run the application in the background:
[Unit]
Description=Ecorpus instance
After=network.target
[Service]
WorkingDirectory=/path/to/eCorpus
ExecStart=npm start
[Install]
WantedBy=default.target
See the documentation of environment variables for more details on instance configuration.
Install from the development branch
git clone --filter=blob:none --recurse-submodules https://github.com/Holusion/eCorpus
cd eCorpus
npm i # install project-wide dependencies
(cd source/voyager && npm i --legacy-peer-deps) # install DPO-Voyager's dependency
(cd source/server && npm i) # install server build dependencies
(cd source/ui && npm i) # install ui-specific dependencies
npm run build-ui # build the client JS bundle
npm run build-server # Transpile the server down to javascript
npm start # start your new eCorpus instance