Skip to content

πŸš‚ Tripick : Pick your trip! πŸ›€

Notifications You must be signed in to change notification settings

swsnu/swpp2021-team4

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸš‚ Tripick: Pick your trip!

Build Status Quality Gate Status Coverage Status

How to Start

Backend

cd backend
python manage.py makemigrations
python manage.py migrate
python manage.py runserver

Frontend

cd frontend
npm i
yarn install
yarn start

Deployment

Backend

cd backend
docker build -t backend .
docker run -d -p 8000:8000 --rm --name backend_container backend:latest

Frontend

cd frontend
docker build -t frontend .
docker run -p 443:443 -v '/etc/letsencrypt:/etc/letsencrypt' --rm -d --name frontend_container frontend