refacto
This commit is contained in:
parent
ab1a169d45
commit
618213572f
7 changed files with 260 additions and 96 deletions
13
config.py
Normal file
13
config.py
Normal 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")
|
Loading…
Add table
Add a link
Reference in a new issue