-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (39 loc) · 2.08 KB
/
.env.example
File metadata and controls
39 lines (39 loc) · 2.08 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
AIRFLOW_UID=501
MINIO_ENDPOINT=minio:9000
MINIO_ROOT_USER=minioadmin
MINIO_ROOT_PASSWORD=minioadmin
# Default bucket for storing blockchain data - Has to be created manually after first docker compose up
MINIO_BUCKET=thegraph
# ======================================================================================
# DATA WAREHOUSE CONFIGURATION (PostgreSQL)
# ======================================================================================
POSTGRES_DB_WAREHOUSE=analytics_warehouse
# Database user credentials
POSTGRES_USER_WAREHOUSE=admin
POSTGRES_PASSWORD_WAREHOUSE=admin
# Database connection details (defaults for Docker network)
POSTGRES_HOST=postgres-datawarehouse
POSTGRES_PORT_WAREHOUSE=5432
# ======================================================================================
# THE GRAPH API CONFIGURATION (Blockchain Data)
# ======================================================================================
# Get your API key from: https://thegraph.com/studio/apikeys/
GRAPH_GATEWAY_API_KEY=your_thegraph_api_key_here
# ======================================================================================
# STREAMLIT CONFIGURATION (Data Visualization)
# ======================================================================================
STREAMLIT_PORT=8501
# ======================================================================================
# OPENAI CONFIGURATION (AI-Powered Query Generation)
# ======================================================================================
# Get your API key from: https://platform.openai.com/api-keys
OPENAI_API_KEY=your_openai_api_key_here
# OpenAI model to use for GraphQL query generation
OPENAI_MODEL=gpt-5
# ======================================================================================
# NOTES:
# - All values shown here are examples/placeholder values
# - Replace all "your_*_here" values with actual credentials
# - API keys should be kept secure and never committed to version control
# - Database passwords should be strong in production
# ======================================================================================