Home > django-projectile

django-projectile

Django-projectile is a project mainly written in Python, based on the BSD-3-Clause license.

A simple django portfolio app.

PROJECTILE

A super simple project portfolio app for Django.

INSTALLATION

  1. Add the projectile folder to your PYTHONPATH

  2. Add projectile to INSTALLED_APPS (see below)

INSTALLED_APPS = (

...

'projectile',
# ...

)

  1. Add the 'projectile.urls' to your urls.py (see below)

urlpatterns = patterns('',

...

url(r'^projects/', include('projectile.urls')),
# ...

)