diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -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 |
