mirror of
https://github.com/sotam0316/brain_dogfood.git
synced 2026-04-24 19:48:35 +09:00
27 lines
703 B
Bash
27 lines
703 B
Bash
# 뇌사료(Brain Dogfood) Environment Variables Template
|
|
|
|
# Flask Security (Required)
|
|
SECRET_KEY=your_super_secret_key_here
|
|
SESSION_LIFETIME_DAYS=30
|
|
|
|
# Content Encryption (Required for Encrypted Memos)
|
|
# Set a unique long string as a seed for Fernet key generation
|
|
ENCRYPTION_SEED=your_encryption_seed_here
|
|
|
|
# Authentication (Required for Login)
|
|
ADMIN_USERNAME=admin
|
|
ADMIN_PASSWORD=admin
|
|
|
|
# AI Features (Optional)
|
|
GEMINI_API_KEY=your_google_gemini_api_key_here
|
|
GEMINI_MODEL=gemini-1.5-flash
|
|
|
|
# API Integration (Optional)
|
|
# For Obsidian Plugin or external tools
|
|
OBSIDIAN_API_TOKEN=your_secret_token_here
|
|
|
|
# Server Configuration (Optional)
|
|
# Default ports: Windows 5050, Linux 5093
|
|
PORT=5093
|
|
DEBUG=False
|