All Projects → django-helpdesk → Django Helpdesk

django-helpdesk / Django Helpdesk

Licence: other
A Django application to manage tickets for an internal helpdesk. Formerly known as Jutda Helpdesk.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Django Helpdesk

Trudesk
☕️ 🌱 Trudesk is an open source help desk/ticketing solution.
Stars: ✭ 549 (-54.17%)
Mutual labels:  support, helpdesk, issues
Eventum
Eventum Issue Tracking System
Stars: ✭ 120 (-89.98%)
Mutual labels:  support, issues, hacktoberfest
Contribute A Thon
Month-long Open Source contributing event ✨
Stars: ✭ 26 (-97.83%)
Mutual labels:  issues, hacktoberfest
Hawkpost
Generate links that users can use to submit messages encrypted with your public key.
Stars: ✭ 843 (-29.63%)
Mutual labels:  hacktoberfest, django
Freescout
FreeScout — Free self-hosted help desk & shared mailbox (Zendesk / Help Scout alternative)
Stars: ✭ 1,008 (-15.86%)
Mutual labels:  support, helpdesk
Django Rest Framework Gis
Geographic add-ons for Django REST Framework. Maintained by the OpenWISP Project.
Stars: ✭ 830 (-30.72%)
Mutual labels:  hacktoberfest, django
Strawberry
A new GraphQL library for Python 🍓
Stars: ✭ 891 (-25.63%)
Mutual labels:  hacktoberfest, django
Bedrock
Making mozilla.org awesome, one pebble at a time
Stars: ✭ 953 (-20.45%)
Mutual labels:  hacktoberfest, django
Site
pythondiscord.com - A Django and Bulma web application.
Stars: ✭ 580 (-51.59%)
Mutual labels:  hacktoberfest, django
Django Cms
The easy-to-use and developer-friendly enterprise CMS powered by Django
Stars: ✭ 8,522 (+611.35%)
Mutual labels:  hacktoberfest, django
Drf Nested Routers
Nested Routers for Django Rest Framework
Stars: ✭ 1,098 (-8.35%)
Mutual labels:  hacktoberfest, django
Sapl
Sistema de Apoio ao Processo Legislativo
Stars: ✭ 63 (-94.74%)
Mutual labels:  hacktoberfest, django
Dwitter
Social network for short js demos
Stars: ✭ 618 (-48.41%)
Mutual labels:  hacktoberfest, django
Django Stubs
PEP-484 stubs for Django
Stars: ✭ 611 (-49%)
Mutual labels:  hacktoberfest, django
Developersrising
Archive only! DISSOLVED! Verein zur Förderung von ProgrammiererInnen 💻 🎉
Stars: ✭ 19 (-98.41%)
Mutual labels:  support, hacktoberfest
Graphite Web
A highly scalable real-time graphing system
Stars: ✭ 5,384 (+349.42%)
Mutual labels:  hacktoberfest, django
Sentry
Sentry is cross-platform application monitoring, with a focus on error reporting.
Stars: ✭ 29,700 (+2379.13%)
Mutual labels:  hacktoberfest, django
Django Dbbackup
Management commands to help backup and restore your project database and media files
Stars: ✭ 471 (-60.68%)
Mutual labels:  hacktoberfest, django
Openwisp Network Topology
Network topology collector and visualizer. Collects network topology data from dynamic mesh routing protocols or other popular networking software like OpenVPN, allows to visualize the network graph, save daily snapshots that can be viewed in the future and more.
Stars: ✭ 67 (-94.41%)
Mutual labels:  hacktoberfest, django
Babybuddy
A 👶 buddy to help caregivers track sleep, feedings, diaper changes, and tummy time to learn about and predict baby's needs without (as much) guess work.
Stars: ✭ 1,021 (-14.77%)
Mutual labels:  django, tracker

django-helpdesk - A Django powered ticket tracker for small businesses.

.. image:: https://travis-ci.org/django-helpdesk/django-helpdesk.png?branch=develop :target: https://travis-ci.org/django-helpdesk/django-helpdesk

.. image:: https://codecov.io/gh/django-helpdesk/django-helpdesk/branch/develop/graph/badge.svg :target: https://codecov.io/gh/django-helpdesk/django-helpdesk

Copyright 2009-2020 Ross Poulton and django-helpdesk contributors. All Rights Reserved. See LICENSE for details.

django-helpdesk was formerly known as Jutda Helpdesk, named after the company which originally created it. As of January 2011 the name has been changed to reflect what it really is: a Django-powered ticket tracker with contributors reaching far beyond Jutda.

Complete documentation is available in the docs/ directory, or online at http://django-helpdesk.readthedocs.org/.

You can see a demo installation at http://django-helpdesk-demo.herokuapp.com/, or run a demo locally in just a couple steps!

Licensing

django-helpdesk is licensed under terms of the BSD 3-clause license. See the file 'LICENSE' for full licensing terms.

Note that django-helpdesk is distributed with 3rd party products which have their own licenses. See LICENSE.3RDPARTY for license terms for included packages.

Demo Quickstart

django-helpdesk includes a basic demo Django project so that you may easily get started with testing or developing django-helpdesk. The demo project resides in the demo/ top-level folder.

It's likely that you can start up a demo project server by running only the command::

make rundemo

then pointing your web browser at localhost:8080.

For more information and options, please read the demo/README.rst file.

NOTE REGARDING SQLITE AND SEARCHING: The demo project uses sqlite as its database. Sqlite does not allow case-insensitive searches and so the search function may not work as effectively as it would on other database such as PostgreSQL or MySQL that does support case-insensitive searches. For more information, see this note_ in the Django documentation.

When you try to do a keyword search using sqlite, a message will be displayed to alert you to this shortcoming. There is no way around it, sorry.

Installation

django-helpdesk requires:

  • Python 3.6+
  • Django 2.2 LTS (latest bugfix release highly recommended)

You can quickly install the latest stable version of django-helpdesk app via pip::

pip install django-helpdesk

You may also check out the master branch on GitHub, and install manually::

python setup.py install

Either way, you will need to add django-helpdesk to an existing Django project.

For further installation information see docs/install.html and docs/configuration.html

Testing

See quicktest.py for usage details

Upgrading from previous versions

If you are upgrading from a previous version of django-helpdesk that used migrations, get an up to date version of the code base (eg by using git pull or pip install --upgrade django-helpdesk) then migrate the database::

python manage.py migrate helpdesk --db-dry-run # DB untouched
python manage.py migrate helpdesk

Lastly, restart your web server software (eg Apache) or FastCGI instance, to ensure the latest changes are in use.

Unfortunately we are unable to assist if you are upgrading from a version of django-helpdesk prior to migrations (ie pre-2011).

You can continue to the 'Initial Configuration' area, if needed.

Contributing

We're happy to include any type of contribution! This can be:

  • back-end python/django code development
  • front-end web development (HTML/Javascript, especially jQuery)
  • language translations
  • writing improved documentation and demos

For more information on contributing, please see the CONTRIBUTING.rst file.

.. _note: http://docs.djangoproject.com/en/dev/ref/databases/#sqlite-string-matching

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].