mirror of
https://github.com/reconurge/flowsint.git
synced 2026-07-21 17:19:36 -05:00
10 lines
250 B
Python
10 lines
250 B
Python
import os
|
|
from dotenv import load_dotenv
|
|
|
|
load_dotenv()
|
|
|
|
class Settings:
|
|
CELERY_BROKER_URL = os.getenv("REDIS_URI", "redis://localhost:6379/0")
|
|
CELERY_RESULT_BACKEND = os.getenv("REDIS_URI", "redis://localhost:6379/0")
|
|
|
|
settings = Settings() |