Skip to content

CS3219-AY2425S1/cs3219-ay2425s1-project-g28

 
 

Repository files navigation

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

About

nus-cs3219-ay2425s1-cs3219-ay2425s1-project-project-template created by GitHub Classroom

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 96.8%
  • Python 1.5%
  • Other 1.7%