Install the following
- git
- docker
- docker-compose
- yarn
- Run
cd backend
- Run
yarn install
- Run
cp .env.example .env
then supply the correct values for the environment
- Run
cd frontend
- Run
yarn install
- Run
cp .env.example .env
then supply the correct values for the environment
Note: Before running the services, make sure that docker
and docker-compose
is installed
- Run
cd deployment
- Run
docker-compose -f dev.dependency.docker-compose.yml up --build -d
. Builds the dependencies - Run
docker-compose -f dev.docker-compose.yml up --build
. Builds the backend service
- Run
cd deployment
- Run
docker-compose -f prod.dependency.docker-compose.yml up --build -d
. Builds the dependencies - Run
docker-compose -f docker-compose.yml up --build
. Builds the backend service