This commit is contained in:
Stanislas Jouffroy 2025-05-20 22:34:36 +02:00
parent ab1a169d45
commit 618213572f
7 changed files with 260 additions and 96 deletions

13
config.py Normal file
View file

@ -0,0 +1,13 @@
import os
from dotenv import load_dotenv
load_dotenv()
MENU_CRECHE_PDF_URL = os.environ.get("MENU_CRECHE_PDF_URL")
MENU_TYPE = os.environ.get("MENU_KIND")
SIGNAL_SENDER = os.environ.get("SIGNAL_SENDER")
SIGNAL_RECIPIENTS = os.environ.get("SIGNAL_RECIPIENTS", default=SIGNAL_SENDER).split(
","
)
SIGNAL_API_URL = os.environ.get("SIGNAL_API_URL")