A small CRUD application implemented with Flask/Bootstrap5. In this application you can create a task log, tasks can be edited/deleted only by the user who created the task.
If you wish to try this small application, please follow the steps described below.
If you want to clone a repository, you need to install git and use the next command or download source files:
git clone https://github.com/solcker/flask-crud.git
You need Python in your system to create a virtual environment. So follow the steps here.
At this point, you have files and activated virtual environment, now write the next two commands in terminal.
export FLASK_APP=flaskcrud
export FLASK_ENV=development
Now you need to write the next command to initialize the database file:
flask init-db
The response is:
Initialized the database.
The last command is:
flask run