Install the following packages:
- docker-ce
- docker-ce-cli
- containerd.io
- docker-compose-plugin
- Configure the config under
backend
inside the filedocker-compose.yml
. - Update docker volume mappings for
backend
anddb
in thedocker-compose.yml
file. - Update environment variables for
frontend
anddb
in thedocker-compose.yml
file. - Run docker-compose
docker compose up -d --build
cp backend/config.yml.example backend/config.yml
apt update
apt install npm
cd frontend
npm install
cp .env.example .env.local
npm run serve