spiffworkflow-connector/app.py

20 lines
529 B
Python
Raw Normal View History

2022-09-26 19:42:45 +00:00
import os
2022-09-09 17:39:56 +00:00
from spiffworkflow_proxy.blueprint import proxy_blueprint
from flask import Flask
2022-09-09 17:39:56 +00:00
app = Flask(__name__)
app.config.from_pyfile("config.py", silent=True)
if app.config["ENV"] != "production":
os.environ["OAUTHLIB_INSECURE_TRANSPORT"] = "1"
# Use the SpiffConnector Blueprint, which will auto-discover any
# connector-* packages and provide API endpoints for listing and executing
# available services.
app.register_blueprint(proxy_blueprint)
if __name__ == "__main__":
app.run(host="localhost", port=5000)