Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
69 lines (54 loc) · 2.25 KB

File metadata and controls

69 lines (54 loc) · 2.25 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Preloop Environment Configuration
# Database Configuration
DATABASE_URL=postgresql+psycopg://user:password@localhost/preloop
# Server Configuration
HOST=0.0.0.0
PORT=8000
DEBUG=false
# Security
SECRET_KEY=generate_a_secure_random_secret_key_here
ACCESS_TOKEN_EXPIRE_MINUTES=30
# Vector Search
EMBEDDING_MODEL=openai/text-embedding-3-small
EMBEDDING_DIMENSION=1536
# API Rate Limiting
RATE_LIMIT_ENABLED=true
RATE_LIMIT_INTERVAL_SECONDS=60
RATE_LIMIT_MAX_REQUESTS=100
# Logging
LOG_LEVEL=INFO
ROOT_LOG_LEVEL=WARNING
# NATS Configuration
NATS_URL=nats://localhost:4222
ANTHROPIC_API_KEY=your_api_key_here
OPENAI_API_KEY=your_api_key_here
AI_MODEL=claude-3-7-sonnet-latest
GITLAB_API_URL=your_api_url_here
GITLAB_API_KEY=your_api_key_here
JIRA_API_URL=your_api_url_here
JIRA_API_KEY=your_api_key_here
GITHUB_API_URL=your_api_url_here
GITHUB_API_KEY=your_api_key_here
# GitHub App Configuration (optional, for GitHub App authentication)
# GITHUB_APP_ID=123456
# GITHUB_APP_SLUG=your-app-slug
# GITHUB_APP_PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----\n...\n-----END RSA PRIVATE KEY-----"
# GITHUB_APP_CLIENT_ID=Iv1.abc123
# GITHUB_APP_CLIENT_SECRET=your_client_secret
PRODUCT_TEAM_EMAIL="product@preloop.ai"
# Push Notifications (FCM for Android)
# FCM_CREDENTIALS_JSON={"type":"service_account",...} # JSON string (preferred for K8s)
# FCM_CREDENTIALS_PATH=/path/to/firebase-credentials.json # Or file path
# Push Proxy (for OSS instances to send push via production)
# PUSH_PROXY_URL=https://preloop.ai/api/v1/push/proxy
# PUSH_PROXY_API_KEY=your_push_proxy_api_key
# INSTALLER_AUDIT_ACCOUNT_ID=00000000-0000-0000-0000-000000000000
# Telemetry and Version Check
# PRELOOP_DISABLE_TELEMETRY=false # Set to true to disable version check telemetry
# VERSION_CHECK_INTERVAL=86400 # Seconds between version checks (default: 24 hours)
# PRELOOP_HOSTED=false # Set to true ONLY on the hosted preloop.ai deployment:
# it is the version-check tracker itself, so it never
# persists update state or shows the update banner
# Startup Options
# SKIP_EXECUTION_RECOVERY=false # Set to true to skip recovering orphaned executions on startup
# Useful for debugging startup issues when stuck executions cause problems
Morty Proxy This is a proxified and sanitized view of the page, visit original site.