import os from dotenv import main # Load environment variables from the .env file main.load_dotenv() # Bind them to Python variables APPLICATION_ROOT = os.environ.get('OVERLAP_APPLICATION_ROOT', '/') PORTNUMBER = int(os.environ.get('OVERLAP_PORTNUMBER', 5001))