mirror of
https://github.com/yeslayla/zappa-deploy-action.git
synced 2025-09-13 19:43:51 +02:00
Intial project
This commit is contained in:
11
test_project/test/__init__.py
Normal file
11
test_project/test/__init__.py
Normal file
@ -0,0 +1,11 @@
|
||||
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')
|
Reference in New Issue
Block a user