22 lines
No EOL
722 B
Text
22 lines
No EOL
722 B
Text
FLASK_ENV=dev
|
|
SECRET_KEY=your-secret-key-here
|
|
JWT_SECRET_KEY=your-jwt-secret-key-here
|
|
CORS_ORIGINS=*
|
|
|
|
# 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=
|
|
|
|
DATABASE_URL=postgresql://crafting:devpassword@localhost:5432/crafting_shop
|
|
DATABASE_URL=postgresql://user:password@localhost/proddb
|
|
TEST_DATABASE_URL=sqlite:///test.db
|
|
|
|
# Celery Configuration
|
|
CELERY_BROKER_URL=redis://localhost:6379/0
|
|
CELERY_RESULT_BACKEND=redis://localhost:6379/0
|
|
|
|
# Minio configuration
|
|
MINIO_ENDPOINT=localhost:9000
|
|
MINIO_ACCESS_KEY=minioadmin
|
|
MINIO_SECRET_KEY=minioadmin |