-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (29 loc) · 1019 Bytes
/
.env.example
File metadata and controls
38 lines (29 loc) · 1019 Bytes
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
# Reddit AI Curator - Environment Configuration
# Copy this file to .env and fill in your values
# PostgreSQL Database
POSTGRES_USER=curator
POSTGRES_PASSWORD=curator_secret
POSTGRES_DB=reddit_curator
DATABASE_URL=postgresql://curator:curator_secret@localhost:5432/reddit_curator
# Redis Cache
REDIS_URL=redis://localhost:6379/0
# Reddit API Credentials
# Get these from: https://www.reddit.com/prefs/apps
REDDIT_CLIENT_ID=y_nwKMULEwMy1umvXupa4w
REDDIT_CLIENT_SECRET=xoevm9D4TaoyYYLiptXFSzZkRDtKwA
REDDIT_USER_AGENT=script:postfilter:v1.0 (by /u/Shiroo_)
# LLM Provider API Keys
# Mistral: https://console.mistral.ai/
MISTRAL_API_KEY=dGjgnYE6kcY5aTFjExd5lD5DAMN1U1ld
# Google Gemini: https://aistudio.google.com/
GOOGLE_API_KEY=AIzaSyAojvCuHfQ5NoFS8v_3rEgef8K28d5fzjQ
# Flask Configuration
SECRET_KEY=your-secret-key-change-in-production
FLASK_APP=app.py
FLASK_ENV=development
# Logging
LOG_LEVEL=INFO
# Rate Limiting (requests per minute)
RATE_LIMIT=60
# Testing (do not change for development)
TESTING=false