To get started with the front end, follow these commands in the terminal:
cd front-end/
npm install
npm run dev
To get started with the back end, follow these commands in the terminal:
cd back-end
pip install virtualenv
virtualenv venv
Activate the virtual environment. If you're using VS Code, use Ctrl+Shift+P
and select the virtual environment. If you're using the terminal:
source venv/bin/activate # For Unix/Linux
.\venv\Scripts\activate # For Windows
Install the required packages:
pip install -r requirement.txt
Run the Django development server:
python manage.py runserver
Make sure you are in the back-end
and the front-end
directory in the terminal, or it will not work.