Ticketing system implemented as a Django application.
Система заявок, реализованная в виде Django приложения.
TonyKurts 9f553ce260 Tickets API v1.2 | пре 6 месеци | |
---|---|---|
api | пре 6 месеци | |
forms | пре 6 месеци | |
models | пре 6 месеци | |
static | пре 1 година | |
templates | пре 6 месеци | |
views | пре 6 месеци | |
.gitattributes | пре 1 година | |
.gitignore | пре 1 година | |
README.md | пре 1 година | |
admin.py | пре 6 месеци | |
apps.py | пре 1 година | |
license-eng.md | пре 1 година | |
license-ru.md | пре 1 година | |
requirements.txt | пре 1 година | |
signals.py | пре 7 месеци | |
urls.py | пре 1 година | |
utils.py | пре 1 година |
Ticketing system implemented as a Django application.
Download or clone repository in core project:
git clone -b master http://git.sharix-app.org/ShariX_Open/sharix-open-tickets.git tickets
Install required libraries from tickets/requirements.txt (don't forget to create and activate virtual environment):
pip install -r tickets/requirements.txt
Set required apps in core/settings.py:
# core/settings.py
INSTALLED_APPS = [
# ...
'django.contrib.sites',
'tickets.apps.TicketsConfig',
# ...
]
Include ShariX Open Tickets URLs in core/urls.py:
# core/urls.py
urlpatterns = [
# ...
path('tickets/', include('tickets.urls', namespace='tickets'), name='tickets'),
# ...
]