This guide helps you set up Sevria locally in just a few steps.
Make sure you have Docker Desktop or Docker Engine installed.
Create a file called compose.yml
and paste the following:
services:
app:
container_name: sevria-app
image: ghcr.io/sevria/app:main
restart: unless-stopped
networks:
- sevria
ports:
- 127.0.0.1:3000:3000
api:
container_name: sevria-api
image: ghcr.io/sevria/api:main
restart: unless-stopped
networks:
- sevria
ports:
- 127.0.0.1:4000:4000
networks:
sevria:
Run the following command to start the containers:
docker compose up -d
Sevria app should be accessible at http://localhost:3000. Open it in the browser to see if the application running.