-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
43 lines (33 loc) · 1.1 KB
/
Copy path.env.example
File metadata and controls
43 lines (33 loc) · 1.1 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
# Git Phantom Scope - Environment Configuration
# Copy this file to .env and fill in your values
# Application
GPS_ENVIRONMENT=development
GPS_DEBUG=true
GPS_HOST=0.0.0.0
GPS_PORT=8000
GPS_LOG_LEVEL=INFO
# CORS
GPS_CORS_ORIGINS=["http://localhost:3000","http://127.0.0.1:3000"]
# Redis
GPS_REDIS_URL=redis://localhost:6379/0
GPS_REDIS_SESSION_TTL=1800
GPS_REDIS_ASSET_TTL=14400
# PostgreSQL (analytics ONLY - NO PII)
GPS_DATABASE_URL=postgresql+asyncpg://gps:gps_dev_password@localhost:5432/gps_analytics
GPS_DATABASE_POOL_SIZE=10
# GitHub API (optional - increases rate limit)
# GPS_GITHUB_TOKEN=ghp_your_token_here
# Gemini (shared free key for free tier users)
# GPS_GEMINI_SHARED_KEY=your_gemini_api_key
# Celery
GPS_CELERY_BROKER_URL=redis://localhost:6379/1
GPS_CELERY_RESULT_BACKEND=redis://localhost:6379/2
# MinIO / S3 (temp asset storage)
GPS_S3_ENDPOINT=http://localhost:9000
GPS_S3_ACCESS_KEY=minioadmin
GPS_S3_SECRET_KEY=minioadmin
GPS_S3_BUCKET=gps-assets
# MLflow
GPS_MLFLOW_TRACKING_URI=http://localhost:5000
# Security (CHANGE IN PRODUCTION!)
GPS_SESSION_SECRET_KEY=dev-secret-key-change-in-production