Web-based task manager and dashboard, written in Django.
Project description
Quick start
Include the URLconf in your project urls.py:
path('taskboard/', include('taskboard.urls')),Include the app in your project settings.py:
INSTALLED_APPS = [ 'taskboard.apps.Taskboard', ]Configure the session engine in your project settings.py:
SESSION_ENGINE = 'django.contrib.sessions.backends.file',
Configure the admins object in your project settings.py:
TASKBOARD_ADMINS = [ {'username': 'admin', 'password': 'admin', 'name': 'Administrator'}, ]Visit http://127.0.0.1:8000/taskboard/ to open the dashboard.
Build
python setup.py sdist
twine upload dist/*
Project details
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-taskboard-0.8.5.tar.gz.
File metadata
- Download URL: django-taskboard-0.8.5.tar.gz
- Upload date:
- Size: 5.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3533b375f4fedec525d58d9193e2c71c5a47a177d03f951be19db775b7eff5a8
|
|
| MD5 |
d1f31277b8a63262826de1cc4ff48731
|
|
| BLAKE2b-256 |
071daa16be0c61db6352586526f26d397f582f19f17fdf8490cd9b97abbc0c0e
|