Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 699 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 699 Bytes

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