Spaces:
Build error
Build error
Update .env.example
Browse files- .env.example +22 -0
.env.example
CHANGED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# OpenRouter API
|
| 2 |
+
OPENROUTER_API_KEY=your_openrouter_key
|
| 3 |
+
OPENROUTER_MODEL=anthropic/claude-3.5-sonnet
|
| 4 |
+
|
| 5 |
+
# Instagram/Meta
|
| 6 |
+
INSTAGRAM_ACCOUNT_ID=your_account_id
|
| 7 |
+
INSTAGRAM_ACCESS_TOKEN=your_access_token
|
| 8 |
+
|
| 9 |
+
# Google Drive
|
| 10 |
+
GOOGLE_CREDENTIALS_JSON={"type": "service_account", ...}
|
| 11 |
+
|
| 12 |
+
# Canva (or alternative)
|
| 13 |
+
CANVA_API_KEY=your_canva_key
|
| 14 |
+
|
| 15 |
+
# RSS Feeds (comma-separated)
|
| 16 |
+
RSS_FEEDS=https://example.com/feed1,https://example.com/feed2
|
| 17 |
+
|
| 18 |
+
# Database
|
| 19 |
+
DATABASE_URL=sqlite:///./instagram_autoposter.db
|
| 20 |
+
|
| 21 |
+
# Prefect
|
| 22 |
+
PREFECT_API_URL=https://api.prefect.cloud/api/accounts/...
|