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
Use an old Django project or start a new project in desired location:
$ django-admin startproject mysite
In your project settings.py add “tracker” to INSTALLED_APPS like this:
INSTALLED_APPS = [ ... 'tracker', ]Include the tracker URLconf in your project urls.py like this:
path('tracker/', include('tracker.urls')),Create Task Tracker models by runing:
$ python manage.py migrate
Start the development server:
$ python manage.py runserver
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
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-tasktracker-0.2.tar.gz.
File metadata
- Download URL: django-tasktracker-0.2.tar.gz
- Upload date:
- Size: 13.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89c97aebfb0b114cf955d1749f3771021dfc62b8519917b80037483928e12fec
|
|
| MD5 |
b4810428c98d2c30f035d7c9057d880a
|
|
| BLAKE2b-256 |
5961466f691b60f6fffdf98fb09e84d2dec295903306c1836abec5c8f3bc8c56
|