wsgi.py
app = Applicatin()
@app.route('/foos')
def get(req, resp):
return 'Hello world!'
gunicorn wsgi:app
The master branch is an integration branch where bug fixes/features are gathered for compiling and functional testing. so it would be unstable.
The release branch is where releases are maintained and hot fixes (with names like release/v2.x.x) are added. Please ensure that all your production-related work are tracked with the release branches.
With this new model, we can push out bug fixes more quickly and achieve simpler maintenance.