You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
264 B
Python
11 lines
264 B
Python
1 year ago
|
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))
|
||
|
|