No history found.

Readme:
Run app: in the root directory run command
flask run

Generate updated db structure
flask db migrate
flask db upgrade

Psql commands
- list all databases: \l
- select db: \c todolist
- list of tables: \dt
- display table details: \d todo

alter table todo alter column body type text;

Documentation
Jija 2: https://jinja.palletsprojects.com/en/2.10.x/templates/
falsk route parameters: https://exploreflask.com/en/latest/views.html
fetch api upload: https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch
service workers: https://developers.google.com/web/ilt/pwa/introduction-to-service-worker#registration_and_scope
https://stackoverflow.com/questions/35780397/understanding-service-worker-scope
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/raluca.pacurar/TodoList_flask

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/raluca.pacurar/TodoList_flask

Clone this repository using git:
git clone git://git.rocketgit.com/user/raluca.pacurar/TodoList_flask

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main