mirror of
https://github.com/Balshgit/public.git
synced 2025-09-11 18:00:42 +03:00
13 lines
422 B
Python
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'))
|