Flask is awesome and can be easily supercharged by pairing it with Paste Deploy: http://pythonpaste.org/deploy This way you get Flask simplicity and elegance, but also you get Rails-like separation of configuration test/development/production environments. Another misconception people seem to have is that Flask means Jinja2. Fortunately that's not the case, swapping Jinja with Mako is also extremely easy. Finally, Fl…
I notice that several projects (including Flask) do not build in support for DB schema management- e.g. migrations. For those of you who are writing apps in Flask, how do you guys manage changes in DB schema ?
For my current side-project, I'm actually building a thin ORM layer that basically handles migrations through hand-written SQL scripts.