Created Flask Example application for dokploy and added README.MD

This commit is contained in:
Mr1Blaze
2024-06-29 17:44:50 +03:00
parent cbe28ad17e
commit c68c194c8c
3 changed files with 55 additions and 0 deletions

12
Flask-Example/main.py Normal file
View File

@@ -0,0 +1,12 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'
if __name__ == '__main__':
app.run(debug=False, ip="0.0.0.0", port=5000)