Final project from IronHack Bootcamp.
A simple To-do app with Vue.js that allows users to create an account, record tasks, edit them and mark them as complete.
Deployment with Netlify
- Client: Vue.js, Vite (dev server)
- Router: Vue Router
- Store: Pinia and Pinia Persist for persistent login
- Database as a service: Supabase
- UI library: Bootstrap
- Build tool to compile our code and provide a development server while we work: Vite
- Have a repo on GitHub
- Commit your work at least once a day during the project development time
- Your app should be rendered in a browser
- Your app should be deployed online using a cloud service such as Netlify
- Stick with KISS (Keep It Simple, Stupid) and DRY (Don’t Repeat Yourself) principles.
- Your app should be styled using CSS
- Your app should be fully integrated with a Supabase database using all CRUD operations
- You should use Vue’s Pinia to fully implement status handling
- You should handle any asynchronous operations using Promises or Async/await
- You should document the application’s features, configuration and technical specifications within a README file
The functionality should include:
- Authentication (sign up, sign in, sign out)
- A front-end that displays the user’s personal to-do list
- An ability to add new tasks
- An ability to edit existing tasks
- An ability to mark tasks as complete/incomplete
- An ability to delete existing tasks
- A store and a database that your app can call data from
See Vite Configuration Reference.
npm installnpm run devnpm run buildLint with ESLint
npm run lintMIT License
Copyright (c) 2022 Clàudia Murall
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.