feature/backstage #13
@@ -46,9 +46,6 @@ upstream:
|
|||||||
|
|
||||||
backend:
|
backend:
|
||||||
baseUrl: http://localhost:7007
|
baseUrl: http://localhost:7007
|
||||||
|
Ghost marked this conversation as resolved
|
|||||||
database:
|
|
||||||
client: better-sqlite3
|
|
||||||
connection: ":memory:"
|
|
||||||
|
|
||||||
# -- Keycloak OIDC authentication
|
# -- Keycloak OIDC authentication
|
||||||
|
Ghost marked this conversation as resolved
Outdated
gitea_admin
commented
SQLite in-memory database will lose data on pod restart; use PostgreSQL for production. #ai-review-inline SQLite in-memory database will lose data on pod restart; use PostgreSQL for production.
```suggestion
client: pg
connection:
host: ${POSTGRES_HOST}
port: 5432
user: ${POSTGRES_USER}
password: ${POSTGRES_PASSWORD}
database: ${POSTGRES_DB}
```
#ai-review-inline
|
|||||||
signInPage: oidc
|
signInPage: oidc
|
||||||
|
|||||||
Reference in New Issue
Block a user
Hardcoded localhost URL will break in Kubernetes deployment; use proper service URL or environment variable.
#ai-review-inline