15 lines
468 B
Plaintext
15 lines
468 B
Plaintext
# Rename to .env and fill in your real values
|
|
OPENAI_API_KEY=your-openai-key-here
|
|
OPENAI_MODEL=gpt-3.5-turbo
|
|
ADMIN_USERNAME=admin
|
|
ADMIN_PASSWORD=yourVeryStrongPassword123
|
|
|
|
# PostgreSQL Database Configuration
|
|
DATABASE_URL=postgresql://username:password@localhost:5432/dbname
|
|
|
|
# Example for local development:
|
|
# DATABASE_URL=postgresql://postgres:password@localhost:5432/maid_proxy
|
|
|
|
# Example for production:
|
|
# DATABASE_URL=postgresql://user:pass@prod-host:5432/prod_db
|