feature/backstage #13

Merged
gitea_admin merged 5 commits from feature/backstage into main 2026-04-23 18:45:57 +00:00
Showing only changes of commit 1f67ccab3f - Show all commits

View File

@@ -46,9 +46,6 @@ upstream:
backend: backend:
baseUrl: http://localhost:7007 baseUrl: http://localhost:7007
Ghost marked this conversation as resolved
Review

Hardcoded localhost URL will break in Kubernetes deployment; use proper service URL or environment variable.

        baseUrl: https://backstage.forteapps.net

#ai-review-inline

Hardcoded localhost URL will break in Kubernetes deployment; use proper service URL or environment variable. ```suggestion baseUrl: https://backstage.forteapps.net ``` #ai-review-inline
database:
client: better-sqlite3
connection: ":memory:"
# -- Keycloak OIDC authentication # -- Keycloak OIDC authentication
Ghost marked this conversation as resolved Outdated

SQLite in-memory database will lose data on pod restart; use PostgreSQL for production.

          client: pg
          connection:
            host: ${POSTGRES_HOST}
            port: 5432
            user: ${POSTGRES_USER}
            password: ${POSTGRES_PASSWORD}
            database: ${POSTGRES_DB}

#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