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