update: ReadMe
This commit is contained in:
parent
7da497066f
commit
8ead7386ca
1 changed files with 4 additions and 17 deletions
21
README.md
21
README.md
|
@ -8,6 +8,8 @@ Dieses Projekt, `ff-admin-server`, ist das Backend zur Verwaltung von Mitglieder
|
||||||
|
|
||||||
Eine Demo zusammen mit der `ff-admin` finden Sie unter [https://admin-demo.ff-admin.de](https://admin-demo.ff-admin.de).
|
Eine Demo zusammen mit der `ff-admin` finden Sie unter [https://admin-demo.ff-admin.de](https://admin-demo.ff-admin.de).
|
||||||
|
|
||||||
|
Das Handbuch zur Anwendung finden sie unter [https://ff-admin.de/ff-admin-handbook](https://ff-admin.de/ff-admin-handbook).
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
Das Image exposed nur den Port 5000. Die Env-Variable SERVER_PORT kann nur im lokal ausführenden dev-Kontext verwendet werden.
|
Das Image exposed nur den Port 5000. Die Env-Variable SERVER_PORT kann nur im lokal ausführenden dev-Kontext verwendet werden.
|
||||||
|
@ -25,26 +27,13 @@ services:
|
||||||
container_name: ff_member_administration_server
|
container_name: ff_member_administration_server
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- DB_TYPE=<mysql|sqlite|postgres> # default ist auf mysql gesetzt
|
- DB_TYPE=<mysql|postgres> # default ist auf mysql gesetzt
|
||||||
- DB_HOST=ff-db
|
- DB_HOST=ff-db
|
||||||
- DB_PORT=<number> # default ist auf 3306 gesetzt
|
- DB_PORT=<number> # default ist auf 3306 gesetzt
|
||||||
- DB_NAME=ffadmin
|
- DB_NAME=ffadmin
|
||||||
- DB_USERNAME=administration_backend
|
- DB_USERNAME=administration_backend
|
||||||
- DB_PASSWORD=<dbuserpasswd>
|
- DB_PASSWORD=<dbuserpasswd>
|
||||||
- JWT_SECRET=<tobemodified>
|
- APPLICATION_SECRET=<tobemodified>
|
||||||
- JWT_EXPIRATION=<number[m|d] - bsp.:15m> # default ist auf 15m gesetzt
|
|
||||||
- REFRESH_EXPIRATION=<number[m|d] - bsp.:1d> # default ist auf 1d gesetzt
|
|
||||||
- PWA_REFRESH_EXPIRATION=<number[m|d] - bsp.:5d> # default ist auf 5d gesetzt
|
|
||||||
- MAIL_USERNAME=<mailadress|username>
|
|
||||||
- MAIL_PASSWORD=<password>
|
|
||||||
- MAIL_HOST=<url>
|
|
||||||
- MAIL_PORT=<port> # default ist auf 587 gesetzt
|
|
||||||
- MAIL_SECURE=<boolean> # default ist auf false gesetzt
|
|
||||||
- CLUB_NAME=<tobemodified> # default ist auf FF Admin gesetzt
|
|
||||||
- CLUB_WEBSITE=<tobemodified>
|
|
||||||
- BACKUP_INTERVAL=<number of days (min. 1)> # alle x Tage, sonst keine
|
|
||||||
- BACKUP_COPIES=<number of parallel copies> # Anzahl parallel bestehender Backups
|
|
||||||
- BACKUP_AUTO_RESTORE=<boolean> # default ist auf true gesetzt
|
|
||||||
- USE_SECURITY_STRICT_LIMIT = (true|false) # default ist true
|
- USE_SECURITY_STRICT_LIMIT = (true|false) # default ist true
|
||||||
- SECURITY_STRICT_LIMIT_WINDOW = [0-9]*(y|d|h|m|s) # default ist 15
|
- SECURITY_STRICT_LIMIT_WINDOW = [0-9]*(y|d|h|m|s) # default ist 15
|
||||||
- SECURITY_STRICT_LIMIT_REQUEST_COUNT = strict_request_count # default ist 15
|
- SECURITY_STRICT_LIMIT_REQUEST_COUNT = strict_request_count # default ist 15
|
||||||
|
@ -91,8 +80,6 @@ networks:
|
||||||
|
|
||||||
Die Verwendung von postgres wird aufgrund des Verhaltens bei Datenbank-Update-Fehlern empfohlen.
|
Die Verwendung von postgres wird aufgrund des Verhaltens bei Datenbank-Update-Fehlern empfohlen.
|
||||||
|
|
||||||
Die Verwendung von SQLite wird nur für die Entwicklung oder lokale Tests empfohlen.
|
|
||||||
|
|
||||||
Führen Sie dann den folgenden Befehl im Verzeichnis der compose-Datei aus, um den Container zu starten:
|
Führen Sie dann den folgenden Befehl im Verzeichnis der compose-Datei aus, um den Container zu starten:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
|
Loading…
Add table
Reference in a new issue