- Python 3.6 or higher find it here
- pip package manager is required to install the dependencies
- venv package is required to create a virtual environment
Clone the repository
git clone repo_url
Create a virtual environment
python3 -m venv venv
source venv/bin/activate
python -m venv venv
venv\Scripts\activate
Install the dependencies, Migrations and run the server
pip install -r requirements.txt
python manage.py makemigrations accounts admins website
python manage.py migrate
python manage.py runserver