-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (19 loc) · 979 Bytes
/
.env.example
File metadata and controls
23 lines (19 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ScamShield API — Environment Variable Reference
# Copy this file to .env and fill in values for your environment.
# Never commit your actual .env file to version control.
# ------------------------------------------------------------------ Core Settings
APP_NAME="ScamShield API"
APP_ENV=development # development | staging | production
APP_VERSION=1.0.0
LOG_LEVEL=INFO # DEBUG | INFO | WARNING | ERROR | CRITICAL
# ------------------------------------------------------------------ Transcription
# Set to false and provide OPENAI_API_KEY to use real Whisper transcription
ENABLE_MOCK_TRANSCRIPTION=true
OPENAI_API_KEY=
# ------------------------------------------------------------------ AWS (future)
# Used for DynamoDB session store, S3 audio storage, and AWS Transcribe
AWS_REGION=us-east-1
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
# ------------------------------------------------------------------ File Limits
MAX_AUDIO_FILE_SIZE_MB=25