File size: 798 Bytes
9e0d500
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# ===========================================
# ENVIRONMENT VARIABLES
# ===========================================

# OpenAI API Key (optional - for better tips)
# Get from: https://platform.openai.com/api-keys
OPENAI_API_KEY=sk-proj-xxxxx

# AWS S3 Configuration (only for production on AWS)
USE_S3=false                          # Set to "true" on AWS
S3_BUCKET_NAME=aurator-audio-outputs  # Your S3 bucket name
AWS_REGION=us-east-1                  # Your AWS region
AWS_ACCESS_KEY_ID=AKIAxxxxx          # AWS credentials
AWS_SECRET_ACCESS_KEY=xxxxx          # AWS credentials

# ===========================================
# FOR HUGGING FACE TESTING:
# Just add OPENAI_API_KEY in Settings > Variables
# Leave USE_S3=false (will use local storage)
# ===========================================