Skip to content

Latest commit

 

History

History
64 lines (42 loc) · 1.28 KB

README.md

File metadata and controls

64 lines (42 loc) · 1.28 KB

spAInews

CI CD Go Report Card

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:

  1. Setup the API
docker-compose -f ./compose-dev-api.yaml up -d --build
  1. First install dependencies:
cd frontend
npm install
cd ..
  1. Start the frontend:
cd frontend
npm run dev

Backend development:

Start the databases services:

docker-compose -f ./compose-dev-databases.yaml up -d --build