Skip to content

sijanonly/django-toolkit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-starter-toolkit

How to use?

Set up virtual python environment

Linux 64-bit
 sudo apt-get install python3-pip python3-dev python3-virtualenv
Mac OS X
 sudo easy_install pip

 sudo pip install --upgrade virtualenv

More on virtualenv ([http://docs.python-guide.org/en/latest/dev/virtualenvs/])

Activate virtual environment and install django 1.10

pip install django==1.10

To create a new Django project (make sure to change project_name)

django-admin.py startproject --template=https://github.com/sijanonly/django-toolkit/archive/master.zip project_name

cd to your project and install the dependences

pip install -r requirements.txt

If you need a database, edit the settings and create one with

python manage.py migrate

Once everything it's setup you can run the development server: http://localhost:8000/

python manage.py runserver

Feel free to contribute.How to contribute to a project ?

About

Django 1.10 setup template

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published