Create .env.example
Browse files- .env.example +14 -0
.env.example
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# GEMINI_API_KEY: Required for Gemini AI API calls.
|
| 2 |
+
# AI Studio automatically injects this at runtime from user secrets.
|
| 3 |
+
# Users configure this via the Secrets panel in the AI Studio UI.
|
| 4 |
+
GEMINI_API_KEY="MY_GEMINI_API_KEY"
|
| 5 |
+
|
| 6 |
+
# APP_URL: The URL where this applet is hosted.
|
| 7 |
+
# AI Studio automatically injects this at runtime with the Cloud Run service URL.
|
| 8 |
+
# Used for self-referential links, OAuth callbacks, and API endpoints.
|
| 9 |
+
APP_URL="MY_APP_URL"
|
| 10 |
+
|
| 11 |
+
# NGROK_AUTHTOKEN: Required to stream via RTMP into this app.
|
| 12 |
+
# Since Hugging Face Spaces and AI Studio only expose HTTP proxies,
|
| 13 |
+
# we use Ngrok to tunnel the RTMP protocol (TCP Port 1935).
|
| 14 |
+
NGROK_AUTHTOKEN="YOUR_NGROK_TOKEN"
|