Skip to content

Latest commit

 

History

History
29 lines (27 loc) · 659 Bytes

README.md

File metadata and controls

29 lines (27 loc) · 659 Bytes

How to run locally

Prerequisites

  • 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

LINUX

python3 -m venv venv
source venv/bin/activate

WINDOWS

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