YAML for Flask Routes - tonyfast/bokeh-table-ui GitHub Wiki
``app.yaml`` describes the routes for the apps. The yaml structure is
```yaml
routes:
'/,index.html'/:
function: hello
methods: [get]
is equivalent to
@app.route( '/', methods=['GET'])
@app.route( '/index.html', methods=['GET'])
def hello():
return "hello"