Skip to content
Open
Show file tree
Hide file tree
Changes from 9 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
1 change: 1 addition & 0 deletions app/resources/country-continent.json

Large diffs are not rendered by default.

348 changes: 348 additions & 0 deletions app/resources/country-subcountry.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions app/resources/world-cities.json

Large diffs are not rendered by default.

Loading