/django_boilerplate

Django 2 project boilerplate

Primary LanguagePythonApache License 2.0Apache-2.0

Django 2 project boilerplate

Follow the steps below

  1. Create your virtual environment and activate
  2. Install latest version of django using pip install django
  3. create new project using command below

django-admin startproject --template=https://github.com/russell310/myproject/archive/master.zip project_name

  1. Install requirements pip install -r requirements.txt
  2. rename .env.example to .env with your own setup details
  3. python manage.py migrate
  4. python manage.py runserver