We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.env
1 parent 0d6531c commit 106bc21Copy full SHA for 106bc21
.env
@@ -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