18 lines
491 B
Plaintext
18 lines
491 B
Plaintext
# AI Configuration
|
|
AI_API_ENDPOINT=https://aiendpoint.org
|
|
AI_API_KEY=your_apikey_here
|
|
AI_MODEL='ai_model_name_here'
|
|
|
|
# OIDC Configuration
|
|
OIDC_ENDPOINT=https://oidc-provider.org
|
|
OIDC_CLIENT_ID=your_oidc_client_id
|
|
OIDC_CLIENT_SECRET=your_oidc_client_secret
|
|
AUTH_SECRET=your_super_secret_jwt_key_that_should_be_at_least_32_characters_long_for_security
|
|
|
|
AUTHENTICATION_NECESSARY=false # Always set this to true in prod
|
|
|
|
|
|
# Application
|
|
PUBLIC_BASE_URL=http://localhost:4321
|
|
|
|
NODE_ENV=development |