13 lines
323 B
Python
13 lines
323 B
Python
# pylint: disable=unused-wildcard-import,wildcard-import,wrong-import-position
|
|
import os
|
|
|
|
from environs import Env
|
|
|
|
script_path = os.path.abspath(__file__)
|
|
script_dir = os.path.dirname(script_path)
|
|
|
|
env = Env()
|
|
env.read_env(f"{script_dir}/../../../env_secrets/local_daniel.env", recurse=False)
|
|
|
|
from .base import * # noqa
|