mirror of
https://github.com/jackeilles/xygt.git
synced 2024-11-08 16:02:37 +01:00
9 lines
No EOL
195 B
Python
Executable file
9 lines
No EOL
195 B
Python
Executable file
#!/usr/bin/env python3
|
|
# Run the app - MADE FOR SYSTEMD SERVICE
|
|
|
|
from app import app
|
|
|
|
if __name__ == '__main__':
|
|
app.run(host='0.0.0.0', debug=False)
|
|
|
|
######################################## |