diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -24,4 +24,12 @@ Concepts: * flask.open_resource: From app package path * request: HTML request??? * Factory function > registered functions and blueprints. -* Blueprint > views & other code
\ No newline at end of file +* Blueprint: groups views & other code +* View: function that returns HTML +* flask.session: dict that stores data across requests (cookies) (securely + signed with SECRET_KEY) +* *endpoint*: name associated with a view, `<blueprint_name>.<view_function_name>` + +Gotchas: + +* Remember to call db.commit() after modifying DB (DML).
\ No newline at end of file |
