-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (33 loc) · 1.25 KB
/
.env.example
File metadata and controls
39 lines (33 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# OAuth2 Proxy Configuration
OAUTH2_PROXY_PROVIDER="oidc"
OAUTH2_PROXY_OIDC_ISSUER_URL="https://your-oidc-issuer-url"
OAUTH2_PROXY_CLIENT_ID="your-client-id"
OAUTH2_PROXY_CLIENT_SECRET="your-client-secret"
OAUTH2_PROXY_COOKIE_SECRET="your-cookie-secret"
OAUTH2_PROXY_COOKIE_SECURE="false" # Set to true in production
OAUTH2_PROXY_COOKIE_SAMESITE="lax"
OAUTH2_PROXY_REDIRECT_URL="http://localhost:8080/oauth2/callback"
OAUTH2_PROXY_HTTP_ADDRESS="0.0.0.0:4180"
OAUTH2_PROXY_SCOPE="openid email offline_access"
OAUTH2_PROXY_REVERSE_PROXY="true"
OAUTH2_PROXY_PASS_ACCESS_TOKEN="true"
OAUTH2_PROXY_PASS_ID_TOKEN="true"
OAUTH2_PROXY_SET_XAUTHREQUEST="true"
OAUTH2_PROXY_SKIP_PROVIDER_BUTTON="false"
OAUTH2_PROXY_EMAIL_DOMAINS="*"
# Database Configuration
DATABASE_URL="postgres://username:password@db:5432/stockflow"
# JWT Configuration
JWT_SECRET="your-jwt-secret-key"
# N8N Configuration
N8N_PATH="/n8n/"
N8N_EDITOR_BASE_URL="http://localhost:8080/n8n/"
WEBHOOK_URL="http://localhost:8080/n8n/"
# PgAdmin Configuration
PGADMIN_DEFAULT_EMAIL="admin@example.com"
PGADMIN_DEFAULT_PASSWORD="your-admin-password"
# Temporal Configuration
TEMPORAL_HOST="temporal:7233"
TEMPORAL_TASK_QUEUE="hero"
# OpenAI Configuration (for Temporal workflows)
OPENAI_API_KEY="your-openai-api-key"