Skip to content

jamesmfriedman/django-primer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Primer

Primer is a WebDK built on Django, jQuery, Bootsrap and LESS, meant to kickstart your next web app.

Primer is currently still in developement and hasn't been submitted the Python Package Index yet. You can start using it now by cloning this repo or installing it directly via pip. You can join the mailing list if you would like updates on Primer's further development, or you can just watch the repo.

Installation

Before you begin: This article assumes you have a blank Django project started up with the appropriately configured database, however you should NOT run ./manage.py syncdb until after getting Primer setup. You can follow Django's tutorial all the way until it tells you to sync your database.

You can install Primer using your favorite Python package manager. Primer has quite a few dependencies, so if you're not using virtualenv, now is the time to start:

pip install git+git://github.com/jamesmfriedman/django-primer.git

After that, add the following to the bottom of your Django settings file.

# this should be the last thing in your settings file
from primer.settings import *

Now you can run the syncdb command, ./manage.py syncdb. Startup your server using ./manage.py runserver or your favorite wsgi. If everythign went to plan, you should greeted by a Hello World page.