https://github.com/tmtabor/django-simpleticket
A simple ticket-tracking app that can easily be dropped into a new or existing Django site.
https://github.com/tmtabor/django-simpleticket
Last synced: 16 days ago
JSON representation
A simple ticket-tracking app that can easily be dropped into a new or existing Django site.
- Host: GitHub
- URL: https://github.com/tmtabor/django-simpleticket
- Owner: tmtabor
- License: mit
- Created: 2016-04-18T22:14:55.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-02T06:35:09.000Z (about 8 years ago)
- Last Synced: 2025-05-07T02:05:31.022Z (16 days ago)
- Language: HTML
- Size: 942 KB
- Stars: 9
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# django-simpleticket
The intent of this project is to provide a simple ticket-tracking app that can easily be dropped into
a new or existing Django site. It aims for bare bones simplicity rather than elaborate features,
minimizing dependencies and allowing the app to be set up in as little time as possible.## Requirements
* Python 2.7 or 3.5+
* Django 1.10+## Setup Instructions
1. Copy the django-simpleticket app into the appropriate directory.
2. Add the add to Django's INSTALLED_APPS list.
3. Run Django's database migration to pick up the app's models.
4. Log into the Django's admin app and create the app's Projects, ticket Priorities and ticket
Statuses. The django-simpleticket app requires that at least one project, priority, status and at
least one User is defined.