Commit existing codebase

This commit is contained in:
Andrey Chervyakov 2021-02-25 01:39:14 +06:00
commit 49bc902bb9
24 changed files with 1208 additions and 0 deletions

9
app/config.py Normal file
View file

@ -0,0 +1,9 @@
import os
from dotenv import dotenv_values
config = {
**dotenv_values(".env.dev"),
**dotenv_values(".env"),
**os.environ
}