-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.docker.example
More file actions
43 lines (37 loc) · 1.18 KB
/
.env.docker.example
File metadata and controls
43 lines (37 loc) · 1.18 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
40
41
42
43
DATABASE_URL=postgresql://localhost:5432/autosoftware
# Claude Authentication (choose ONE):
# Option 1: OAuth token from Claude Code Max subscription (FREE usage!)
# Get it with: security find-generic-password -s "Claude Code-credentials" -w | python3 -c "import sys,json; print(json.load(sys.stdin)['claudeAiOauth']['accessToken'])"
# Or run: claude setup-token
CLAUDE_CODE_OAUTH_TOKEN=
# Option 2: API key from console.anthropic.com (pay-per-use)
ANTHROPIC_API_KEY=sk-ant-xxx
# Misc
SESSION_SECRET=change-me-to-random-string
API_KEY_ENCRYPTION_SECRET= # Required: generate with `openssl rand -hex 32`
FRONTEND_URL=http://localhost:5001
BACKEND_URL=http://localhost:5002
# OAuth (optional)
GITHUB_CLIENT_ID=
GITHUB_CLIENT_SECRET=
GITLAB_CLIENT_ID=
GITLAB_CLIENT_SECRET=
BITBUCKET_CLIENT_ID=
BITBUCKET_CLIENT_SECRET=
# Integration OAuth (optional)
LINEAR_CLIENT_ID=
LINEAR_CLIENT_SECRET=
JIRA_CLIENT_ID=
JIRA_CLIENT_SECRET=
ASANA_CLIENT_ID=
ASANA_CLIENT_SECRET=
AZURE_DEVOPS_CLIENT_ID=
AZURE_DEVOPS_CLIENT_SECRET=
# Object Storage
STORAGE_ENGINE="filesystem" # Can be filesystem, minio
MINIO_BUCKET_NAME=
MINIO_ENDPOINT=''
MINIO_ACCESS_KEY=''
MINIO_SECRET_KEY=''
MINIO_USE_SSL=''
MINIO_REGION=''