22 lines
581 B
Plaintext
22 lines
581 B
Plaintext
# Flask Configuration
|
|
SECRET_KEY=your_flask_secret_key_here
|
|
|
|
# JWT Configuration
|
|
JWT_SECRET_KEY=your_jwt_secret_key_here
|
|
|
|
# Database Configuration
|
|
DATABASE_URL=sqlite:///soundboard.db
|
|
|
|
# OAuth Providers Configuration
|
|
# Configure the providers you want to support by setting their client credentials
|
|
|
|
# Google OAuth
|
|
GOOGLE_CLIENT_ID=your_google_client_id_here
|
|
GOOGLE_CLIENT_SECRET=your_google_client_secret_here
|
|
|
|
# GitHub OAuth
|
|
GITHUB_CLIENT_ID=your_github_client_id_here
|
|
GITHUB_CLIENT_SECRET=your_github_client_secret_here
|
|
|
|
# Stream Processing Configuration
|
|
STREAM_MAX_CONCURRENT=2 |