-
Create a virtual environment:
python -m venv venv
-
Activate the virtual environment:
-
For Windows:
venv\Scripts\activate
-
For macOS/Linux:
source venv/bin/activate
-
-
Install the required libraries:
pip install -r requirements.txt
-
Follow
.env.template
to setup your database settings in the.env
-
Apply database migrations:
python manage.py migrate
-
Start the Django development server:
python manage.py runserver
-
Open your web browser and visit http://localhost:8000 to access the application.
-
If you need to deactivate the virtual environment, simply run:
deactivate
-
For more information on Django, refer to the official documentation.