summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/README.md b/README.md
index 17876c2..6433ba2 100644
--- a/README.md
+++ b/README.md
@@ -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