- Python 3.10.11
- Node.js + npm installed
- Git installed
Navigate to the "backend" folder and create a virtual environment:
cd backend
py -3.10 -m venv .venv
.\.venv\Scripts\activateTo check python version:
py --versionThe version shouuld be 3.10.(something) after activating env
Install backend dependencies (only after activating the virtual environment):
pip install -r requirements.txtNavigate to the "frontend" folder:
cd ../frontendInstall frontend packages:
npm installTo run the React server:
npm run devTo run the Django server, go to "backend" folder
py manage.py runserver