Skip to content

byteweaver/django-app-skeleton

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-app-skeleton

skeleton for new django applications.

All following sections are just dummies and may not work as excepted.

Key features

  • Reusable skeleton for new apps
  • ...

Installation

If you want to install the latest stable release from PyPi:

$ pip install django-app-skeleton

If you want to install the latest development version from GitHub:

$ pip install -e git://github.com/byteweaver/django-app-skeleton#egg=django-app-skeleton

Add skeleton to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'skeleton',
    ...
)

Hook this app into your urls.py:

urlpatterns = patterns('',
    ...
    url(r'^your-url/$', include('skeleton.urls')),
    ...
)

About

A skeleton used to start new standalone Django applications.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages