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
Go to frontend
folder, install the requirements and run the server.
cd frontend
npm install
npm start
Go to nginx
folder, correct ports and servernames
cd nginx
nano backend.conf
nano frontend.conf
Edit the docker-compose.yml
, correct ports and configs
nano docker-compose.yml
docker-compose up