1
0
Fork 0

Add main.py

This commit is contained in:
Eric Lay 2025-05-04 20:03:19 -05:00
parent 6167be2ff1
commit 0ae01fdfc3
1 changed files with 10 additions and 0 deletions

10
main.py Normal file
View File

@ -0,0 +1,10 @@
from irc_bot import bot
from web_app import appV3
from config import FLASK_PORT
# Do the damn deal
if __name__ == "__main__":
print("[MAIN] Starting IRC bot and web app locally...")
bot.connect()
bot.start()
appV3.run(host="0.0.0.0", port=FLASK_PORT)