spAInews

Preview
Deploying
Make sure you have docker and docker-cli installed (docker desktop should do the job on Windows).
Production
It is important to check if the predefined configurations inside configs/ directory are consistent with your deployment
docker-compose -f ./docker-compose.yaml up -d --build
Development
Frontend development:
- Setup the API
docker-compose -f ./compose-dev-api.yaml up -d --build
- First install dependencies:
cd frontend
npm install
cd ..
- Start the frontend:
cd frontend
npm run dev
Backend development:
Start the databases services:
docker-compose -f ./compose-dev-databases.yaml up -d --build