-
Copy
./config.dev.yml
to./config.yml
and modify it. You can use yaml language server to help you with the configuration. -
Run
rake configure
to generate the configuration file. -
Launch external servers
cp ./docker-compose.dev.yml ./docker-compose.yml
docker compose up -d
- Launch all development servers
goreman start
You can access the frontend and backend at http://localhost:3100
,
but it's strongly recommended to use tunneling services like cloudflared or ngrok.
-
Copy
./config.prod.yml
to./config.yml
and modify it. You can use yaml language server to help you with the configuration. -
Run
rake configure
to generate the configuration file. -
Copy
./docker-compose.prod.yml
to./docker-compose.yml
, and modify it.
The default configuration points to the original image on ghcr.io, so you have to modify the url to use your own image.
- Launch all production servers.
docker compose up -d