kanban-app/backend/.env.example

22 lines
722 B
Text
Raw Normal View History

FLASK_ENV=dev
SECRET_KEY=your-secret-key-here
JWT_SECRET_KEY=your-jwt-secret-key-here
CORS_ORIGINS=*
2026-08-09 12:49:45 +00:00
# Allowed Host headers (comma-separated). Requests with a Host not in this list
# are rejected with 404 (blocks direct IP:port access). Leave empty to disable.
# Example: ALLOWED_HOSTS=example.com,www.example.com
ALLOWED_HOSTS=
2026-02-25 16:48:18 +00:00
DATABASE_URL=postgresql://crafting:devpassword@localhost:5432/crafting_shop
DATABASE_URL=postgresql://user:password@localhost/proddb
TEST_DATABASE_URL=sqlite:///test.db
2026-02-21 18:38:19 +00:00
# Celery Configuration
CELERY_BROKER_URL=redis://localhost:6379/0
CELERY_RESULT_BACKEND=redis://localhost:6379/0
2026-03-20 17:17:01 +00:00
# Minio configuration
MINIO_ENDPOINT=localhost:9000
MINIO_ACCESS_KEY=minioadmin
MINIO_SECRET_KEY=minioadmin