Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.22 KB

README.md

File metadata and controls

43 lines (34 loc) · 1.22 KB

django_official_tutorial

With vagrant file you will have Ubuntu 14.04 with preinstalled:

  • Python
  • MySQL

Requirements

Installation

Development Workflow

  • git clone this repository:
# Clone with HTTPS
$ git clone https://github.com/curious725/django_official_tutorial.git
# Clone with SSH
$ git clone [email protected]:curious725/django_official_tutorial.git
  • To start development run
 $ vagrant up dev
 $ vagrant ssh dev
 $ cd /vagrant
 $ source venv/bin/activate
 $ cd /polls/
 $ python manage.py runserver 0.0.0.0:8000