-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
46 lines (41 loc) · 2.21 KB
/
.env.example
File metadata and controls
46 lines (41 loc) · 2.21 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
# VeriFlow Environment Configuration (Development & Production)
# Copy this file to .env and update the values suitable for your environment.
# For Production:
# - Use strong, unique passwords and keys.
# - Copy the final content into your CI/CD secrets (e.g., PROD_ENV GitHub secret).
# =============================================================================
# DATABASE
# =============================================================================
POSTGRES_USER=veriflow
POSTGRES_PASSWORD=veriflow123
POSTGRES_DB=veriflow
# DATABASE_URL is used for local development. In Docker Prod, it is constructed automatically.
DATABASE_URL=postgresql://veriflow:veriflow123@localhost:5432/veriflow
# =============================================================================
# MINIO OBJECT STORAGE
# =============================================================================
# MINIO_ENDPOINT is used for local development. In Docker Prod, it is set to minio:9000.
MINIO_ENDPOINT=localhost:9000
MINIO_ACCESS_KEY=veriflow
MINIO_SECRET_KEY=veriflow123
# =============================================================================
# AIRFLOW
# =============================================================================
# AIRFLOW_API_URL is used for local development. In Docker Prod, it is set to the internal service URL.
AIRFLOW_API_URL=http://localhost:8080
AIRFLOW_USERNAME=airflow
AIRFLOW_PASSWORD=airflow
# Generate FERNET_KEY with: python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())"
# SECURITY WARNING: Replace this key with a newly generated one for Production!
AIRFLOW_FERNET_KEY=81HqDtbqAywKSOumSha3BhWNOdQ26slT6K0YaZeZyPs=
AIRFLOW_SECRET_KEY=veriflow-secret-key
# =============================================================================
# GEMINI API (REQUIRED)
# =============================================================================
# Obtain from Google AI Studio: https://aistudio.google.com/
GEMINI_API_KEY=your-gemini-api-key-here
# =============================================================================
# FRONTEND (Development)
# =============================================================================
VITE_API_URL=http://localhost:8000
VITE_WS_URL=ws://localhost:8000