Skip to content

Commit 0d6531c

Browse files
committed
generated file: .env.example
1 parent f80716a commit 0d6531c

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

Diff for: .env.example

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# OpenAI API Key
2+
OPENAI_API_KEY="YOUR_API_KEY_HERE"
3+
4+
# Database Connection URL
5+
DATABASE_URL="postgresql://user:password@host:port/database"
6+
7+
# Secret Key for JWT Authentication
8+
SECRET_KEY="your_secret_key"
9+
10+
# Optional: Debug Mode Flag
11+
DEBUG=False
12+
13+
# Optional: Logging Level (INFO, DEBUG, etc.)
14+
LOG_LEVEL="INFO"
15+
16+
# Optional: Prometheus Metrics Endpoint
17+
PROMETHEUS_METRICS_ENDPOINT="/metrics"
18+
19+
# Optional: Cache Configuration (Redis)
20+
CACHE_HOST="localhost"
21+
CACHE_PORT=6379
22+
CACHE_DB=0

0 commit comments

Comments
 (0)