mirror of
https://github.com/PaiGramTeam/FixMiYouShe.git
synced 2024-11-25 17:35:44 +00:00
10 lines
189 B
Python
10 lines
189 B
Python
import os
|
|
|
|
from dotenv import load_dotenv
|
|
|
|
load_dotenv()
|
|
|
|
DEBUG = os.getenv("DEBUG", "True").lower() == "true"
|
|
DOMAIN = os.getenv("DOMAIN", "127.0.0.1")
|
|
PORT = int(os.getenv("PORT", 8080))
|