summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMitsuo Tokumori <[email protected]>2023-10-27 18:34:05 -0500
committerMitsuo Tokumori <[email protected]>2023-10-27 18:34:05 -0500
commit3d8f5d82738f27cdde78ba4bd0b07535c234f6db (patch)
treea6384686a0abab98480f030c063f5f60b5797618 /README.md
parent7c0d3e015f2fc1fe0ebdfca819d98d2a5abd8223 (diff)
downloadustayml-3d8f5d82738f27cdde78ba4bd0b07535c234f6db.tar.gz
ustayml-3d8f5d82738f27cdde78ba4bd0b07535c234f6db.tar.bz2
ustayml-3d8f5d82738f27cdde78ba4bd0b07535c234f6db.zip
Add sqlite3 connection
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/README.md b/README.md
index bd987c7..17876c2 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,7 @@
# flask-tutorial
+https://flask.palletsprojects.com/en/3.0.x/tutorial
+
## Installation
```bash
@@ -9,3 +11,17 @@ source .venv/bin/activate
pip install -r requirements.txt
flask --app flaskr run --debug
```
+
+## Learning resources
+
+* https://flask.palletsprojects.com/en/3.0.x/#user-s-guide
+* https://sqlite.org/lang.html
+
+Concepts:
+
+* flask.g: Store data. Unique for each request
+* flask.current_app: Link to Flask app
+* 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