2021-07-28 02:15:48 +03:00

13 lines
422 B
Python

from pathlib import Path
from decouple import AutoConfig
# Build paths inside the project like this: BASE_DIR.joinpath('some')
# `pathlib` is better than writing: dirname(dirname(dirname(__file__)))
# BASE_DIR = PurePath(__file__).parent.parent.parent.parent
BASE_DIR = Path.cwd()
# Loading `.env` files
# See docs: https://gitlab.com/mkleehammer/autoconfig
config = AutoConfig(search_path=BASE_DIR.joinpath('config'))