Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 612 Bytes

README.MD

File metadata and controls

43 lines (32 loc) · 612 Bytes

24 Sevens

Backend

Go to backend folder, create a virtual environment and install the requirements.

cd backend
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt

Frontend

Go to frontend folder, install the requirements and run the server.

cd frontend
npm install
npm start

Nginx

Go to nginx folder, correct ports and servernames

cd nginx
nano backend.conf
nano frontend.conf

Docker

Edit the docker-compose.yml, correct ports and configs

nano docker-compose.yml

Deployment

docker-compose up