Timothy Hobbs
Timothy Hobbs
In my humble opinion this is out of scope of the project. We use `django-post-office` in production to this effect and that requires,no changes to helpdesk. You can just set...
I personally would prefer to add sections to the django template if needed so that you can simply over-ride and reimport the the template than to have a new setting...
@jorge-leon To do this you would rename https://github.com/django-helpdesk/django-helpdesk/blob/main/helpdesk/templates/helpdesk/navigation-sidebar.html to navigation-sidebar-base.html you can then add blocks like so https://github.com/django-helpdesk/django-helpdesk/blob/dce3c0c73f3a304118d62c9affdee1c73ba608e7/helpdesk/templates/helpdesk/base.html#L48 where you want to insert things into the sidebar. Then you would...
Images can be found here https://hub.docker.com/r/djangohelpdesk/standalone/tags
Realized this wasn't quite as polished as I had thought changing to draft.
@Benbb96 OK, I've updated the docs :)
@uhurusurfa 1. The database backend is configurable by using your own localsettings.py file as documented here: https://github.com/django-helpdesk/django-helpdesk/pull/1195/files#diff-d8d76a1c758ef3ff139bc3c432d12ce86ca69f6c8b60a8c59457c1176d82c32bR72 I don't think it makes sense to create a whole new system for...
I'm happy to split out the postgres dependencies out and create a `base` image without them. IMO the default standalone image should contain everything you need to run helpdesk, and...
@uhurusurfa actually it's already all documented (including setting up the env vars) here: https://github.com/django-helpdesk/django-helpdesk/blob/main/docs/standalone.rst `setup.sh` will set up the env vars that you need for postgres.
The only thing this PR really does is that it makes it easier to install the standalone helpdesk by providing pre-built images. The standalone helpdesk is already merged.