web3-starter-py/boilerplates/dash/wrappers/settings.py
osiris account 69bb4175f1 💾
2023-03-12 15:29:57 -07:00

12 lines
No EOL
220 B
Python

# 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')