django-helpdesk


Namedjango-helpdesk JSON
Version 1.2.0 PyPI version JSON
download
home_pagehttps://github.com/django-helpdesk/django-helpdesk
SummaryDjango-powered ticket tracker for your helpdesk
upload_time2024-04-29 20:35:19
maintainerGarret Wassermann
docs_urlNone
authorRoss Poulton
requires_pythonNone
licenseBSD
keywords django helpdesk django-helpdesk tickets incidents cases bugs track support
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            django-helpdesk - A Django powered ticket tracker for small businesses.
=======================================================================

.. image:: https://dev.azure.com/django-helpdesk/django-helpdesk/_apis/build/status/django-helpdesk.django-helpdesk?branchName=master
  :target: https://dev.azure.com/django-helpdesk/django-helpdesk/_build/latest?definitionId=1&branchName=master
  :alt: Build Status

.. 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-2023 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/.


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 (consider creating a virtualenv before):

    make rundemo

or with docker::

    docker build . -t demodesk
    docker run --rm -v "$PWD:/app" -p 8080:8080 demodesk

then pointing your web browser at http://localhost:8080 (log in as user
`admin`` with password `Test1234`).

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
------------

* |standalone_icon| For **standalone** installation, refer to `standalone documentation <./docs/standalone.rst>`_.

* |django_icon| To **integrate** with an existing Django application, follow the guidelines in `installation documentation <./docs/install.rst>`_ and `configuration documentation <./docs/configuration.rst>`_.

.. |standalone_icon| image:: helpdesk/static/helpdesk/img/icon512.png
   :height: 24px
   :width: 24px
   :align: middle

.. |django_icon| image:: helpdesk/static/helpdesk/img/django-logo-positive.png
   :height: 24px
   :width: 60px
   :align: middle

Developer Environment
---------------------

Follow these steps to set up your development environment to contribute to helpdesk:
 - check out the helpdesk app to your local file system::

    git clone https://github.com/django-helpdesk/django-helpdesk.git
 
 - install a virtual environment and activate it::
  
    python -m venv .venv && source .venv/bin/activate

 - install the requirements for development::

    pip install -r requirements.txt -r requirements-dev.txt

 - you can install the requirements for testing as well::

    pip install -r requirements-testing.txt

To deactivate the virtual environment, use ``deactivate``. Then to reactivate it, just run::

    source .venv/bin/activate

To see option for the Makefile run: `make`

The project enforces a standardized formatting in the CI/CD pipeline. To ensure you have the correct formatting run::

    make checkformat
    
To auto format any code use this::

    make format

Testing
-------

From the command line you can run the tests using: `make test`

See `quicktest.py` for usage details.

If you need to create tests for new features, add your tests in a test file to the `tests` module and call them in the test VENV with::
    python quicktest.py helpdesk.tests.test_my_new_features -v 2

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.


Licensing
---------

django-helpdesk is licensed under terms of the BSD 3-clause license.
See the `LICENSE` file 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.

.. _note: https://docs.djangoproject.com/en/dev/ref/databases/#substring-matching-and-case-sensitivity


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/django-helpdesk/django-helpdesk",
    "name": "django-helpdesk",
    "maintainer": "Garret Wassermann",
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": "gwasser@gmail.com",
    "keywords": "django, helpdesk, django-helpdesk, tickets, incidents, cases, bugs, track, support",
    "author": "Ross Poulton",
    "author_email": "ross@rossp.org",
    "download_url": "https://files.pythonhosted.org/packages/d6/23/d7b5bd3981b05ebc7f9c08847d26952c09c0785c55a8f08c0cc2e52d3999/django_helpdesk-1.2.0.tar.gz",
    "platform": null,
    "description": "django-helpdesk - A Django powered ticket tracker for small businesses.\n=======================================================================\n\n.. image:: https://dev.azure.com/django-helpdesk/django-helpdesk/_apis/build/status/django-helpdesk.django-helpdesk?branchName=master\n  :target: https://dev.azure.com/django-helpdesk/django-helpdesk/_build/latest?definitionId=1&branchName=master\n  :alt: Build Status\n\n.. image:: https://codecov.io/gh/django-helpdesk/django-helpdesk/branch/develop/graph/badge.svg\n  :target: https://codecov.io/gh/django-helpdesk/django-helpdesk\n\nCopyright 2009-2023 Ross Poulton and django-helpdesk contributors. All Rights Reserved.\nSee LICENSE for details.\n\ndjango-helpdesk was formerly known as Jutda Helpdesk, named after the\ncompany which originally created it. As of January 2011 the name has been\nchanged to reflect what it really is: a Django-powered ticket tracker with\ncontributors reaching far beyond Jutda.\n\nComplete documentation is available in the docs/ directory,\nor online at http://django-helpdesk.readthedocs.org/.\n\n\nDemo Quickstart\n---------------\n\n`django-helpdesk` includes a basic demo Django project so that you may easily\nget started with testing or developing `django-helpdesk`. The demo project\nresides in the `demo/` top-level folder.\n\nIt's likely that you can start up a demo project server by running\nonly the command (consider creating a virtualenv before):\n\n    make rundemo\n\nor with docker::\n\n    docker build . -t demodesk\n    docker run --rm -v \"$PWD:/app\" -p 8080:8080 demodesk\n\nthen pointing your web browser at http://localhost:8080 (log in as user\n`admin`` with password `Test1234`).\n\nFor more information and options, please read the `demo/README.rst` file.\n\n**NOTE REGARDING SQLITE AND SEARCHING:**\nThe demo project uses `sqlite` as its database. Sqlite does not allow\ncase-insensitive searches and so the search function may not work as\neffectively as it would on other database such as PostgreSQL or MySQL\nthat does support case-insensitive searches.\nFor more information, see this note_ in the Django documentation.\n\nWhen you try to do a keyword search using `sqlite`, a message will be displayed\nto alert you to this shortcoming. There is no way around it, sorry.\n\nInstallation\n------------\n\n* |standalone_icon| For **standalone** installation, refer to `standalone documentation <./docs/standalone.rst>`_.\n\n* |django_icon| To **integrate** with an existing Django application, follow the guidelines in `installation documentation <./docs/install.rst>`_ and `configuration documentation <./docs/configuration.rst>`_.\n\n.. |standalone_icon| image:: helpdesk/static/helpdesk/img/icon512.png\n   :height: 24px\n   :width: 24px\n   :align: middle\n\n.. |django_icon| image:: helpdesk/static/helpdesk/img/django-logo-positive.png\n   :height: 24px\n   :width: 60px\n   :align: middle\n\nDeveloper Environment\n---------------------\n\nFollow these steps to set up your development environment to contribute to helpdesk:\n - check out the helpdesk app to your local file system::\n\n    git clone https://github.com/django-helpdesk/django-helpdesk.git\n \n - install a virtual environment and activate it::\n  \n    python -m venv .venv && source .venv/bin/activate\n\n - install the requirements for development::\n\n    pip install -r requirements.txt -r requirements-dev.txt\n\n - you can install the requirements for testing as well::\n\n    pip install -r requirements-testing.txt\n\nTo deactivate the virtual environment, use ``deactivate``. Then to reactivate it, just run::\n\n    source .venv/bin/activate\n\nTo see option for the Makefile run: `make`\n\nThe project enforces a standardized formatting in the CI/CD pipeline. To ensure you have the correct formatting run::\n\n    make checkformat\n    \nTo auto format any code use this::\n\n    make format\n\nTesting\n-------\n\nFrom the command line you can run the tests using: `make test`\n\nSee `quicktest.py` for usage details.\n\nIf you need to create tests for new features, add your tests in a test file to the `tests` module and call them in the test VENV with::\n    python quicktest.py helpdesk.tests.test_my_new_features -v 2\n\nUpgrading from previous versions\n--------------------------------\n\nIf you are upgrading from a previous version of `django-helpdesk` that used\nmigrations, get an up to date version of the code base (eg by using\n`git pull` or `pip install --upgrade django-helpdesk`) then migrate the database::\n\n    python manage.py migrate helpdesk --db-dry-run # DB untouched\n    python manage.py migrate helpdesk\n\nLastly, restart your web server software (eg Apache) or FastCGI instance, to\nensure the latest changes are in use.\n\nUnfortunately we are unable to assist if you are upgrading from a\nversion of `django-helpdesk` prior to migrations (ie pre-2011).\n\nYou can continue to the 'Initial Configuration' area, if needed.\n\nContributing\n------------\n\nWe're happy to include any type of contribution! This can be:\n\n* back-end python/django code development\n* front-end web development (HTML/Javascript, especially jQuery)\n* language translations\n* writing improved documentation and demos\n\nFor more information on contributing, please see the `CONTRIBUTING.rst` file.\n\n\nLicensing\n---------\n\ndjango-helpdesk is licensed under terms of the BSD 3-clause license.\nSee the `LICENSE` file for full licensing terms.\n\nNote that django-helpdesk is distributed with 3rd party products which\nhave their own licenses. See LICENSE.3RDPARTY for license terms for\nincluded packages.\n\n.. _note: https://docs.djangoproject.com/en/dev/ref/databases/#substring-matching-and-case-sensitivity\n\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Django-powered ticket tracker for your helpdesk",
    "version": "1.2.0",
    "project_urls": {
        "Homepage": "https://github.com/django-helpdesk/django-helpdesk"
    },
    "split_keywords": [
        "django",
        " helpdesk",
        " django-helpdesk",
        " tickets",
        " incidents",
        " cases",
        " bugs",
        " track",
        " support"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3b3f42397c330ebac3817c86718f353b23b732ac9a93ae807fa82798fc5d2e8",
                "md5": "d17145e182889fd482dc3677d6970f22",
                "sha256": "12cf50058aa2b63b66618b50f8adeeec553d35d47e02f71522910c1e0d2628e6"
            },
            "downloads": -1,
            "filename": "django_helpdesk-1.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d17145e182889fd482dc3677d6970f22",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 10406687,
            "upload_time": "2024-04-29T20:35:15",
            "upload_time_iso_8601": "2024-04-29T20:35:15.943726Z",
            "url": "https://files.pythonhosted.org/packages/c3/b3/f42397c330ebac3817c86718f353b23b732ac9a93ae807fa82798fc5d2e8/django_helpdesk-1.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d623d7b5bd3981b05ebc7f9c08847d26952c09c0785c55a8f08c0cc2e52d3999",
                "md5": "80f4bc4e171887b75ea3a3094a42c819",
                "sha256": "320bbdbb7b68014ac48d857e3b9a202638fb45f2ecfd7efbbb0e8fa48a31cd74"
            },
            "downloads": -1,
            "filename": "django_helpdesk-1.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "80f4bc4e171887b75ea3a3094a42c819",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 9398972,
            "upload_time": "2024-04-29T20:35:19",
            "upload_time_iso_8601": "2024-04-29T20:35:19.323475Z",
            "url": "https://files.pythonhosted.org/packages/d6/23/d7b5bd3981b05ebc7f9c08847d26952c09c0785c55a8f08c0cc2e52d3999/django_helpdesk-1.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-29 20:35:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "django-helpdesk",
    "github_project": "django-helpdesk",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "django-helpdesk"
}
        
Elapsed time: 0.24836s