hyperdashi-server/.env.example
2025-07-05 11:50:50 +09:00

21 lines
No EOL
490 B
Text

# Database
DATABASE_URL=sqlite://hyperdashi.db
# For production: DATABASE_URL=postgres://user:password@localhost/hyperdashi
# Server
SERVER_HOST=127.0.0.1
SERVER_PORT=8080
# Storage
STORAGE_TYPE=local
LOCAL_STORAGE_PATH=./uploads
# For S3 storage (production)
# STORAGE_TYPE=s3
# AWS_ACCESS_KEY_ID=your_access_key
# AWS_SECRET_ACCESS_KEY=your_secret_key
# AWS_REGION=ap-northeast-1
# S3_BUCKET_NAME=hyperdashi-images
# Logging
RUST_LOG=hyperdashi_server=debug,tower_http=debug,sqlx=warn