Is possible to do a to do list with check if the task is done or not. You can add, update or delete tasks in modals. This project is made with Python language in backend, Flask and the frontend in VueJs framework.
Everyone needs a to do list. Not quite, but it is a starting point to full stack dev
git clone https://github.com/ClaudiaSSL/My-To-Do-List.git
> cd My-To-Do-List
> python -m venv venv
> source venv/bin/activate
> cd backend
> pip install -r requirements.txt
> flask run --port=5001 --debug
> cd My-To-Do-List/frontend
> npm install
> npm run dev
Now you can have access to your to do list through the url that frontend terminal gives you.
ClaudiaSSL