mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-15 10:22:43 +01:00
6 lines
191 B
Python
6 lines
191 B
Python
from run import app, init_debug
|
|
import os
|
|
|
|
if __name__ == "__main__":
|
|
init_debug()
|
|
app.run(host=os.getenv('IP', '0.0.0.0'), port=int(os.getenv('PORT', 8080)), debug=True, processes=3) |