2. Go to the standalone helpdesk installation directory:
..code-block:: bash
cd django-helpdesk/standalone
3. Execute the installation script:
..code-block:: bash
./setup.sh
4. Start the services:
..code-block:: bash
docker-compose up
Creating an Admin User
----------------------
1. List the running containers:
..code-block:: bash
docker ps
2. Execute into the `standalone-django-helpdesk-1` container:
..code-block:: bash
docker exec -it standalone-django-helpdesk-1 bash
3. Change directory to the application's root:
..code-block:: bash
cd /opt/django-helpdesk/standalone
4. Create a superuser:
..code-block:: bash
python3 manage.py createsuperuser
5. Visit `localhost:80` in your browser to access the server. Navigate to the `/admin` URL to set up new users. Ensure to configure the "Site" in the admin section for ticket email URLs to function correctly.
Configuration for Production Use
--------------------------------
1. Update the `Caddyfile` to replace the `localhost` URL with your desired production URL.
2. Modify the `docker-compose` file to adjust the paths. By default, files are stored in `/tmp`.
3. For custom configurations, bindmount a `local_settings.py` into `/opt/django-helpdesk/standalone/config/local_settings.py`.
4. To customize the logo in the top-left corner of the helpdesk: