Skip to main content

A basic Django app to record and track XP stories and tasks.

Project description

Task Tracker is a basic Django app to record and track stories, tasks and invested time. Loosely based on Extreme Programming methodology.

Quick start

  1. Use an old Django project or start a new project in desired location:

    $ django-admin startproject mysite
  2. In your project settings.py add “tracker” to INSTALLED_APPS like this:

    INSTALLED_APPS = [
        ...
        'tracker',
    ]
  3. Include the tracker URLconf in your project urls.py like this:

    path('tracker/', include('tracker.urls')),
  4. Create Task Tracker models by runing:

    $ python manage.py migrate
  5. Start the development server:

    $ python manage.py runserver
  6. Visit http://127.0.0.1:8000/tracker/.

Tests

App has inbuilt tests that require Selenium set up. See http://www.seleniumhq.org for more details.

Project details


Release history Release notifications | RSS feed

This version

0.2

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-tasktracker-0.2.tar.gz (13.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page