overholt
overholt copied to clipboard
Example Flask application illustrating some of my common practices
How is the circular import of celery tasks handled?
There is a small typo in overholt/forms.py, overholt/models.py. Should read `consolidated` rather than `consolodated`.
I think you mean to `return wrapper` here, instead of `return f`, right? https://github.com/mattupstate/overholt/blob/master/overholt/api/__init__.py#L50 otherwise the `bp.route` and other decorators won't apply. maybe i'm misunderstanding!
I'm using Flask-Restful for my API but how would I use `api.add_resource` similar to how you did `route`? Also I want to add some wrappers for app and api. Where...
I had change the url of connecting mysql,and created a database named overholt ,but no tables in it. what I want to konw is that how can create the tables???...
- Updated test factories to use `factory.alchemy.SQLAlchemyModelFactory` - Added orm scoped session for db connections - Updated packages to latest - `is_authenticated` is not callable any more - updating to...
In overholt I am trying to send the flask-security emails via Celery. I am following the instructions you have provided here: https://github.com/mattupstate/flask-security/issues/194 I cannot find anywhere in Overholt to put...
Hey, Can you show how to use flask-principal within this, as in where does the Role get managed, and how to use the protected views. Do you create a new...
Hi! I want decorative view function two times with @route decorator like this: ``` @route(bp,'/') @route(bp,'/') def index(id): ..... ``` bug i get error "View function mapping is overwriting an...