multitenancy-helpdesk


Namemultitenancy-helpdesk JSON
Version 0.1.0b6 PyPI version JSON
download
home_pagehttps://github.com/tekanokhambane/multitenancy-helpdesk
SummaryA ticket tracker for django-multitenancy helpdesk
upload_time2022-12-31 16:44:03
maintainerTekano Khambane
docs_urlNone
authorTekano Khambane
requires_python
licenseBSD
keywords django helpdesk multitenancy-helpdesk tickets multitenants incidents cases bugs track support
VCS
bugtrack_url
requirements Django django-bootstrap4-form celery email-reply-parser akismet markdown beautifulsoup4 lxml simplejson pytz six pinax_teams djangorestframework django-model-utils django-cleanup
Travis-CI No Travis.
coveralls test coverage
            multitenancy-helpdesk - A Django powered ticket tracker for django-multitenancy.
=================================================================================

.. [![Build Status](https://dev.azure.com/django-helpdesk/django-helpdesk/_apis/build/status/django-helpdesk.django-helpdesk?branchName=master)](https://dev.azure.com/django-helpdesk/django-helpdesk/_build/latest?definitionId=1&branchName=master)

.. .. 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-2022 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::

    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.8+
* Django 3.2 LTS highly recommended (early adopters may test Django 4)

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`

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

Follow these steps to set up your development environment to contribute to helpdesk:
 - install a virtual environment
     - using virtualenv from the helpdesk base folder do::
          virtualenv .venv && source .venv/bin/activate

 - install the requirements for development::
    pip install -r requirements.txt -r requirements-dev.txt

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.

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: http://docs.djangoproject.com/en/dev/ref/databases/#sqlite-string-matching




            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/tekanokhambane/multitenancy-helpdesk",
    "name": "multitenancy-helpdesk",
    "maintainer": "Tekano Khambane",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "tkhambane@gmail.com",
    "keywords": "django,helpdesk,multitenancy-helpdesk,tickets,multitenants,incidents,cases,bugs,track,support",
    "author": "Tekano Khambane",
    "author_email": "tkhambane@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/51/12/451ad050a07e05aee0fbe5b88c27feb9942b4420c418b137694272c0ad4b/multitenancy-helpdesk-0.1.0b6.tar.gz",
    "platform": null,
    "description": "multitenancy-helpdesk - A Django powered ticket tracker for django-multitenancy.\n=================================================================================\n\n.. [![Build Status](https://dev.azure.com/django-helpdesk/django-helpdesk/_apis/build/status/django-helpdesk.django-helpdesk?branchName=master)](https://dev.azure.com/django-helpdesk/django-helpdesk/_build/latest?definitionId=1&branchName=master)\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-2022 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\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::\n\n    make rundemo\n\nthen pointing your web browser at `localhost:8080`.\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`django-helpdesk` requires:\n\n* Python 3.8+\n* Django 3.2 LTS highly recommended (early adopters may test Django 4)\n\nYou can quickly install the latest stable version of `django-helpdesk`\napp via `pip`::\n\n    pip install django-helpdesk\n\nYou may also check out the `master` branch on GitHub, and install manually::\n\n    python setup.py install\n\nEither way, you will need to add `django-helpdesk` to an existing\nDjango project.\n\nFor further installation information see `docs/install.html`\nand `docs/configuration.html`\n\nDeveloper Environment\n---------------------\n\nFollow these steps to set up your development environment to contribute to helpdesk:\n - install a virtual environment\n     - using virtualenv from the helpdesk base folder do::\n          virtualenv .venv && source .venv/bin/activate\n\n - install the requirements for development::\n    pip install -r requirements.txt -r requirements-dev.txt\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    make checkformat\n\nTo auto format any code use this::\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\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: http://docs.djangoproject.com/en/dev/ref/databases/#sqlite-string-matching\n\n\n\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "A ticket tracker for django-multitenancy helpdesk",
    "version": "0.1.0b6",
    "split_keywords": [
        "django",
        "helpdesk",
        "multitenancy-helpdesk",
        "tickets",
        "multitenants",
        "incidents",
        "cases",
        "bugs",
        "track",
        "support"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "3941a8e0c06c1ea34b5e04766b14c64d",
                "sha256": "5d6dcb9fdba8e9a346cd431fefafd923aea99694f2f171b81f956eb6116dbfe1"
            },
            "downloads": -1,
            "filename": "multitenancy_helpdesk-0.1.0b6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3941a8e0c06c1ea34b5e04766b14c64d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 10330563,
            "upload_time": "2022-12-31T16:43:53",
            "upload_time_iso_8601": "2022-12-31T16:43:53.757721Z",
            "url": "https://files.pythonhosted.org/packages/ee/2c/60a8f384d4f17854267cf3f7d08e5cd6256bd3cb646af73f80ed0bfff33b/multitenancy_helpdesk-0.1.0b6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "55e58a450222494d2c0833036a0c9e74",
                "sha256": "d61bbdf6439908f688a3db3a26d13526adcb0b05425aec1ad194f4a788380ac0"
            },
            "downloads": -1,
            "filename": "multitenancy-helpdesk-0.1.0b6.tar.gz",
            "has_sig": false,
            "md5_digest": "55e58a450222494d2c0833036a0c9e74",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 9327701,
            "upload_time": "2022-12-31T16:44:03",
            "upload_time_iso_8601": "2022-12-31T16:44:03.218024Z",
            "url": "https://files.pythonhosted.org/packages/51/12/451ad050a07e05aee0fbe5b88c27feb9942b4420c418b137694272c0ad4b/multitenancy-helpdesk-0.1.0b6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-31 16:44:03",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "tekanokhambane",
    "github_project": "multitenancy-helpdesk",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [
        {
            "name": "Django",
            "specs": [
                [
                    ">=",
                    "3.2"
                ]
            ]
        },
        {
            "name": "django-bootstrap4-form",
            "specs": []
        },
        {
            "name": "celery",
            "specs": []
        },
        {
            "name": "email-reply-parser",
            "specs": []
        },
        {
            "name": "akismet",
            "specs": []
        },
        {
            "name": "markdown",
            "specs": []
        },
        {
            "name": "beautifulsoup4",
            "specs": []
        },
        {
            "name": "lxml",
            "specs": []
        },
        {
            "name": "simplejson",
            "specs": []
        },
        {
            "name": "pytz",
            "specs": []
        },
        {
            "name": "six",
            "specs": []
        },
        {
            "name": "pinax_teams",
            "specs": []
        },
        {
            "name": "djangorestframework",
            "specs": []
        },
        {
            "name": "django-model-utils",
            "specs": []
        },
        {
            "name": "django-cleanup",
            "specs": []
        }
    ],
    "tox": true,
    "lcname": "multitenancy-helpdesk"
}
        
Elapsed time: 0.02330s