Skip to content

Latest commit

 

History

History
67 lines (40 loc) · 1.37 KB

README.md

File metadata and controls

67 lines (40 loc) · 1.37 KB

CS3219 Project (PeerPrep) - AY2425S1 Group 28

Deployment

We deployed PeerPrep on AWS ECS. It is accessible here (deprecated).

Setting up

We will be using Docker to set up PeerPrep. Install Docker here.

Follow the instructions in here first before proceeding.

  1. Build all the services (without using cache).
docker-compose build --no-cache
  1. Run all the services (in detached mode).
docker-compose up -d

To stop all the services, use the following command:

docker-compose down

Running in Production Mode

  1. Build all the services (without using cache).
docker-compose -f docker-compose-prod.yml build --no-cache
  1. Run all the services (in detached mode).
docker-compose -f docker-compose-prod.yml up -d

To stop all the services, use the following command:

docker-compose -f docker-compose-prod.yml down

Useful links