mirror of
https://github.com/yeslayla/zappa-deploy-action.git
synced 2025-04-27 11:15:02 +02:00
11 lines
193 B
Python
11 lines
193 B
Python
from flask import Flask
|
|
|
|
app = Flask(__name__)
|
|
app.secret_key = "test"
|
|
|
|
@app.route("/")
|
|
def index():
|
|
return "Hello World!"
|
|
|
|
if __name__ == '__main__':
|
|
app.run(debug=True,host='0.0.0.0') |