mirror of
https://github.com/SirBlobby/Hoya26.git
synced 2026-02-03 19:24:34 -05:00
10 lines
160 B
Python
10 lines
160 B
Python
from dotenv import load_dotenv
|
|
load_dotenv()
|
|
|
|
from src import create_app
|
|
|
|
app = create_app()
|
|
|
|
if __name__ == "__main__":
|
|
app.run(host='0.0.0.0', port=5000)
|