- Docker (v20.10.0 or higher)
The docker/images/
folder provides the Dockerfile of
the programming language runtime environment that Elaina supports.
Use docker pull
command to pull the images from DockerHub before you start running the Elaina. This operation only
needs to be performed once.
docker pull elainaruntime/golang
docker pull elainaruntime/php
docker pull elainaruntime/python
docker pull elainaruntime/javascript
git clone [email protected]:wuhan005/Elaina.git
# Build frontend
cd frontend/ && yarn install && yarn build
# Build backend
go build .
Postgres database configuration.
export PGPORT=5432
export PGHOST=<REDACTED>
export PGUSER=<REDACTED>
export PGPASSWORD=<REDACTED>
export PGDATABASE=<REDACTED>
export PGSSLMODE=disable
# Set the web manager panel password.
export APP_PASSWORD=<REDACTED>
./Elaina
Visit http://<your-host>:8080/m/
to login to the manager panel.
MIT