Getting started

This document is designed to get you up and running with pinax.apps.tasks...

Prerequisites

These are the requirements to run pinax.apps.tasks:

  • Python 2.4+ (Python 3.x is not supported yet)
  • Django 1.2+
  • django-attachments 0.3.1
  • django-atomformat 0.1.1.dev1
  • django-filter 0.5.3
  • django-tagging 0.3.1
  • django-notification 0.1.4
  • django-threadedcomments 0.5.2
  • dpaste [optional]

These dependencies should be added to your requirements/project.txt file and installed using pip. For example:

pip install -r requirements/project.txt

Installation

Add pinax.apps.tasks to your INSTALLED_APPS:

INSTALLED_APPS = [
    # ...
    "pinax.apps.tasks",
]

Hook up pinax.apps.account to your URLconf:

urlpatterns = patterns("",
    # ...
    url(r"^tasks/", include("pinax.apps.tasks.urls"))
)

Project Versions

Table Of Contents

Previous topic

pinax.apps.tasks

Next topic

Reference

This Page