61e7290ce8
Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
515 B
Bash
16 lines
515 B
Bash
# Скопируйте в .env и измените значения
|
|
POSTGRES_USER=photohost
|
|
POSTGRES_PASSWORD=change_me_strong_password
|
|
POSTGRES_DB=photohost
|
|
DATABASE_URL=postgresql://photohost:change_me_strong_password@db:5432/photohost
|
|
|
|
SECRET_KEY=change_me_random_secret_key_min_32_chars
|
|
MAX_UPLOAD_MB=10
|
|
UPLOAD_FOLDER=/app/uploads
|
|
APP_PORT=8080
|
|
|
|
# First admin (created automatically on first startup if no admin exists)
|
|
ADMIN_USERNAME=admin
|
|
ADMIN_EMAIL=admin@example.com
|
|
ADMIN_PASSWORD=change_me_admin_password
|