You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
769 B
769 B
Before starting the setup, make sure Python 3.6 is installed on your system.
-
Use the pip tool to install
virtualenv. (See this guide for further details.)pip install --user pipenv -
Create a virtual environment.
python3 -m venv /path/to/new/virtual/environment -
cdinto the directory you just created a virtual environment in, and clone the GitHub repo. -
Activate the virtual environment from the command line.
source bin/activate -
cdinto the repository root directory and install all dependencies usingpip.pip install -r requirements.txt -
Run Django migrations.
python manage.py migrate -
Start the server.
python manage.py runserver