kanban-app/backend/.env.example

12 lines
384 B
Text
Raw Permalink Normal View History

FLASK_ENV=dev
SECRET_KEY=your-secret-key-here
JWT_SECRET_KEY=your-jwt-secret-key-here
CORS_ORIGINS=*
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