Skip to content

Commit 4273a6c

Browse files
authored
Merge 7953228 into f85eb84
2 parents f85eb84 + 7953228 commit 4273a6c

File tree

6 files changed

+1125
-0
lines changed

6 files changed

+1125
-0
lines changed

app/config.py.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import os
22
import pathlib
33

44
from fastapi_mail import ConnectionConfig
5+
from pathlib import Path
56
from pydantic import BaseSettings
67
from starlette.templating import Jinja2Templates
78

@@ -97,6 +98,7 @@ CONTENT_WEIGHTS = 1 - TITLE_WEIGHTS
9798

9899
# PATHS
99100
STATIC_ABS_PATH = os.path.abspath("static")
101+
RESOURCES_PATH = Path(__file__).parent / 'resources'
100102

101103
# LOGGER
102104
LOG_PATH = "./var/log"

0 commit comments

Comments
 (0)