""" Label Audit development server. ============================== This server is intended for development only: it enables debugging tools, and use a different port (5000) so it can more easily interface with other applications. Launching the server is relatively easy:: $ pyvenv env $ source env/bin/activate; $ python dev.py Note: you'll want to set export OAUTHLIB_INSECURE_TRANSPORT=1 in your env to allow the microservice to connect to VAPI without SSL. """ from application import app if __name__ == '__main__': app.run( host='0.0.0.0', debug=True, port=5000)