-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
35 lines (29 loc) · 1.12 KB
/
Copy pathenv.example
File metadata and controls
35 lines (29 loc) · 1.12 KB
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
# Instagram Tools Configuration
# Copy this file to .env and fill in your actual values
# Flask Settings
SECRET_KEY=your_secret_key_here
DEBUG=True
HOST=0.0.0.0
PORT=8080
# File Paths
UPLOAD_FOLDER=output/downloads
TEMPLATE_FOLDER=templates
# Instagram API Settings
RAPIDAPI_KEY=your_rapidapi_key_here
INSTAGRAM_ACCESS_TOKEN=your_instagram_access_token
# Image Upscaling API Settings (optional)
REPLICATE_API_TOKEN=your_replicate_api_token_here
DEEP_AI_API_KEY=your_deepai_api_key_here
UPSCALE_MEDIA_API_KEY=your_upscale_media_api_key_here
LETS_ENHANCE_API_KEY=your_lets_enhance_api_key_here
# Firebase Configuration (optional)
FIREBASE_PROJECT_ID=your_project_id_here
FIREBASE_STORAGE_BUCKET=your_project_id.appspot.com
FIREBASE_PRIVATE_KEY_ID=your_private_key_id
FIREBASE_PRIVATE_KEY="-----BEGIN PRIVATE KEY-----\nyour_private_key_here\n-----END PRIVATE KEY-----\n"
FIREBASE_CLIENT_EMAIL=your_service_account_email
FIREBASE_CLIENT_ID=your_client_id
FIREBASE_CLIENT_X509_CERT_URL=https://www.googleapis.com/robot/v1/metadata/x509/your_service_account_email
# Image Processing Settings
DEFAULT_MIN_RESOLUTION=800
MAX_IMAGE_SIZE=10485760