add blerplate

This commit is contained in:
Mia von Steinkirch 2019-12-17 09:25:46 -08:00
parent d51c32f029
commit d32e821bd7
9 changed files with 323 additions and 3 deletions

View file

@ -0,0 +1,12 @@
# Load all env variables from .env file
import os
from dotenv import load_dotenv
from pathlib import Path
env_path = Path('.') / '.env'
load_dotenv(dotenv_path=env_path)
# General constants
PORT = os.getenv('PORT')