1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-26 10:43:35 +02:00
awesome-compose/samples/nginx-flask-mysql/backend/hello.py
Anca Iordache a410c8bc62 add nginx-flask-mysql application sample
Signed-off-by: Anca Iordache <anca.iordache@docker.com>
2020-03-05 17:28:07 +01:00

6 lines
107 B
Python
Executable file

from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello world'