SAE-A2-TruthInquiry/app.py
2023-01-16 14:36:49 +01:00

9 lines
189 B
Python

# Load .env file
from dotenv import load_dotenv
load_dotenv()
from truthinquiry import APP as app # the variable 'app' is detected by `flask run`
if __name__ == "__main__":
app.run()