-
Create a Virtual Environment:
- On Linux/macOS:
python3 -m venv venv source venv/bin/activate
- On Windows:
python -m venv venv venv\Scripts\activate
- On Linux/macOS:
-
Install Dependencies:
- Run the following command to install all required dependencies:
pip3 install -r requirements.txt
- If this doesn't work, install dependencies manually one by one from
requirements.txt
using:pip3 install <package_name>
- Run the following command to install all required dependencies:
-
Run the Backend Server:
- Start the Django server:
python3 manage.py runserver
- Start the Django server:
-
Install Dependencies:
- Navigate to the frontend project directory and run:
npm install
- Navigate to the frontend project directory and run:
-
Start the Frontend:
- To start the frontend, run:
npm start
- To start the frontend, run:
- Ensure both backend and frontend servers are running for full functionality.
- For any issues related to dependencies, refer to
requirements.txt
for the backend andpackage.json
for the frontend.