Skip to content
Open
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/config.py.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os

from fastapi_mail import ConnectionConfig
from pathlib import Path
from pydantic import BaseSettings
from starlette.templating import Jinja2Templates

Expand Down Expand Up @@ -67,6 +68,7 @@ MAX_EVENTS_START_DATE = 10 # Max Events with the same start date.

# PATHS
STATIC_ABS_PATH = os.path.abspath("static")
RESOURCES_PATH = Path(__file__).parent / 'resources'

# LOGGER
LOG_PATH = "./var/log"
Expand Down
Loading