15 lines
315 B
Python
15 lines
315 B
Python
|
import pathlib
|
||
|
from environs import Env
|
||
|
|
||
|
|
||
|
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
||
|
BASE_DIR = pathlib.Path(__file__).resolve().parent.parent
|
||
|
|
||
|
|
||
|
# Init environment:
|
||
|
env = Env()
|
||
|
|
||
|
# read .env file, if it exists
|
||
|
# reed more about .env file here: https://github.com/sloria/environs
|
||
|
env.read_env()
|