-
-
Save viktor-evdokimov/367f950aac2ce7871d12910cac2d3fbd to your computer and use it in GitHub Desktop.
Falcon App start up file with Flask like routes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import falcon | |
import os | |
from app.db import db_session | |
from app.utils.exceptions import build_error_response | |
from app.startup import (autoload, add_routes) | |
wsgi_app = falcon.API(after=[db_session.remove_session]) | |
autoload("{0}/{1}".format(os.path.dirname(__file__), "handlers")) | |
add_routes(wsgi_app) | |
wsgi_app.add_error_handler(Exception, build_error_response) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment