From 4183ab5c54c3a2a677010732c42fbac8dffb475f Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 27 Nov 2024 15:09:17 +0100 Subject: [PATCH] add adminpass cmd, update readme --- README.md | 18 ++++++++++-------- abra.sh | 4 ++++ 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 74418e1..500ca70 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,17 @@ # pretix -> One line description of the recipe +> Ticket shop application for conferences, festivals, concerts, tech events, shows, exhibitions, workshops, barcamps, etc. * **Category**: Apps * **Status**: 0 * **Image**: [`pretix`](https://hub.docker.com/r/pretix), 4, upstream -* **Healthcheck**: No -* **Backups**: No -* **Email**: No +* **Healthcheck**: Yes +* **Backups**: Yes +* **Email**: Yes * **Tests**: No -* **SSO**: No +* **SSO**: Only supported for customer accounts, see [documentation](https://docs.pretix.eu/en/latest/user/customers/index.html) @@ -21,6 +21,8 @@ * `abra app config ` * `abra app deploy ` * If you get an internal server error, try running `pretix migrate` inside the app container +* Initial admin is `admin@localhost` with password `admin` +* Change immediately via gui or `abra app cmd app change_adminpass` For more, see [`docs.coopcloud.tech`](https://docs.coopcloud.tech). @@ -28,7 +30,7 @@ For more, see [`docs.coopcloud.tech`](https://docs.coopcloud.tech). ## TODO * [X] mail -* [ ] healthchecks -* [ ] cronjob: 15,45 * * * * /usr/bin/docker exec pretix.service pretix cron -* [ ] backups https://docs.pretix.eu/en/latest/admin/maintainance.html#maintainance +* [x] healthchecks +* [x] cronjob: 15,45 * * * * /usr/bin/docker exec pretix.service pretix cron +* [x] backups https://docs.pretix.eu/en/latest/admin/maintainance.html#maintainance * [ ] plugins diff --git a/abra.sh b/abra.sh index e11dd7c..2046716 100644 --- a/abra.sh +++ b/abra.sh @@ -1,3 +1,7 @@ export PRETIX_CONFIG_VERSION=v1 export CRON_ENTRYPOINT_VERSION=v1 export PG_BACKUP_VERSION=v1 + +change_adminpass(){ + python -m django changepassword admin@localhost +}