mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-30 15:28:12 +02:00
Huge role refactoring/cleanup. Other commits will propably follow. Because some bugs will exist. Still important for longrun and also for auto docs/help/slideshow generation
This commit is contained in:
37
roles/web-app-taiga/Development.md
Normal file
37
roles/web-app-taiga/Development.md
Normal file
@@ -0,0 +1,37 @@
|
||||
# Development Notes
|
||||
|
||||
## Build front container
|
||||
|
||||
```bash
|
||||
docker compose up -d --force-recreate taiga-front
|
||||
```
|
||||
|
||||
## Debug
|
||||
|
||||
Verify front configuration:
|
||||
|
||||
```bash
|
||||
docker compose exec -it taiga-front cat /usr/share/nginx/html/conf.json
|
||||
```
|
||||
|
||||
Verify the backend configuration:
|
||||
```bash
|
||||
docker compose exec -it taiga-back cat /taiga-back/settings/local.py
|
||||
```
|
||||
|
||||
## Additional Configuration for plugin
|
||||
```bash
|
||||
# ENABLE_OPENID Plugin
|
||||
ENABLE_OPENID = os.getenv('ENABLE_OPENID', 'False') == 'True'
|
||||
if ENABLE_OPENID:
|
||||
INSTALLED_APPS += [
|
||||
"taiga_contrib_openid_auth"
|
||||
]
|
||||
OPENID_USER_URL = os.getenv('OPENID_USER_URL')
|
||||
OPENID_TOKEN_URL = os.getenv('OPENID_TOKEN_URL')
|
||||
OPENID_CLIENT_ID = os.getenv('OPENID_CLIENT_ID')
|
||||
OPENID_CLIENT_SECRET = os.getenv('OPENID_CLIENT_SECRET')
|
||||
OPENID_SCOPE = os.getenv('OPENID_SCOPE')
|
||||
OPENID_FILTER = os.getenv('OPENID_FILTER')
|
||||
OPENID_FILTER_FIELD = os.getenv('OPENID_FILTER_FIELD')
|
||||
```
|
Reference in New Issue
Block a user