py-scopes/demo/config.py

9 lines
142 B
Python

# py-scopes/demo/config.py
from dotenv import load_dotenv
from os import getenv
load_dotenv()
server_port = getenv('SERVER_PORT', '8999')