Go to backend folder by "cd backend" in terminal and type
python -m venv venv
Next activate the environmet:
venv\Scripts\activate.bat
Then install all libraries needed:
pip install -r requirements.txt
To start the server type:
python server.py
Go to frontend folder by "cd frontend" in terminal and install all the dependencies by typing
npm i
To start the app in development type:
npm run dev
When the app will be finished go with:
npm run build
If everything was alright start the app with:
npm run start