-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy path.env.example
More file actions
executable file
·46 lines (37 loc) · 1.09 KB
/
Copy path.env.example
File metadata and controls
executable file
·46 lines (37 loc) · 1.09 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
44
45
46
# ============================================================
# Source Sequence Antenna Forge (YAF) — Environment Variables
# Copy to .env and customize
# ============================================================
# --- Database ---
DATABASE_URL=postgresql+asyncpg://yaf:yaf_secret@localhost:5432/yaf
DATABASE_URL_SYNC=postgresql://yaf:yaf_secret@localhost:5432/yaf
# --- Redis ---
REDIS_URL=redis://localhost:6379/0
CELERY_BROKER_URL=redis://localhost:6379/1
CELERY_RESULT_BACKEND=redis://localhost:6379/2
# --- MinIO ---
MINIO_ENDPOINT=localhost:9000
MINIO_ACCESS_KEY=minioadmin
MINIO_SECRET_KEY=minioadmin
MINIO_BUCKET=yaf-artifacts
MINIO_SECURE=false
# --- Qdrant ---
QDRANT_URL=http://localhost:6333
QDRANT_COLLECTION=antenna_designs
# --- API ---
API_HOST=0.0.0.0
API_PORT=8000
CORS_ORIGINS=["http://localhost:5173"]
# --- Security ---
SECRET_KEY=change-me-in-production
JWT_ALGORITHM=HS256
JWT_EXPIRE_MINUTES=1440
# --- Solver Paths ---
OPENEMS_PATH=/usr/local/bin
NEC2_PATH=/usr/local/bin/nec2c
# --- AI ---
JAX_PLATFORM=cpu
TORCH_DEVICE=cpu
AI_MODEL_DIR=./models
# --- Logging ---
LOG_LEVEL=INFO