DivisionBy-Zero/erpa-sweng

View on GitHub
server/main.py

Summary

Maintainability
A
0 mins
Test Coverage
from api import app


if __name__ == '__main__':
    # This is used when running locally only. When deploying to Google App
    # Engine, a webserver process such as Gunicorn will serve the app. This
    # can be configured by adding an `entrypoint` to app.yaml.
    app.run(host='127.0.0.1', port=8080, debug=True)