django-pt

A simple, Django-powered project tracking solution.


License
MIT
Install
pip install django-pt==0.1

Documentation

pt

pt is a simple, Django-powered project tracking solution.

Build Status

Documentation

Coming soon!

Demo

http://www.lowestfrequency.com/pt

Quickstart

  1. Add pt to INSTALLED_APPS in settings.py:
  INSTALLED_APPS = {
  ...
  'pt'
  }

Add 'pt/templates/pt' to TEMPLATES in settings.py:

  TEMPLATES = [
  {
      'BACKEND': 'django.template.backends.django.DjangoTemplates',
      'DIRS': ['pt/templates/pt/'],
      ...
      }

Include the pt URLconf in urls.py:

  url(r'^pt/', include('pt.urls'))
  1. Run python manage.py migrate to migrate pt's models.

  2. Run python manage.py createsuperuser to set up initial login.

  3. Start tracking!