An open API service indexing awesome lists of open source software.

https://github.com/craftingweb/to-do-application

To Do App: Technology Stack - Frontend: React and for Backend: Supabase || There are three main entities that are relevant to a todo list app: users, lists, and items. Also attributes for each entity, as well as the relationships between them. Data model can be used to efficiently store and retrieve data about users, their lists, and the tasks
https://github.com/craftingweb/to-do-application

Last synced: 3 months ago
JSON representation

To Do App: Technology Stack - Frontend: React and for Backend: Supabase || There are three main entities that are relevant to a todo list app: users, lists, and items. Also attributes for each entity, as well as the relationships between them. Data model can be used to efficiently store and retrieve data about users, their lists, and the tasks

Awesome Lists containing this project

README

        

Screenshot 2023-09-30 at 6 42 21 PM
Screenshot 2023-05-20 at 5 21 09 PM
Screenshot 2023-05-20 at 3 59 14 PM

Description:
There are three main entities that are relevant to a todo list app: users, lists, and items. Also defined the attributes for each entity, as well as the relationships between them.

Data model can be used to efficiently store and retrieve data about users, their lists, and the tasks associated with those lists in a todo list app. For example, the schema creates SQL queries that allow to filter, add and delete items in user own list.

Entities:
- Users
- Lists
- Items

Attributes:
- Authentication: email, password
- Users list: email, first name, last name
- Lists: list_id, list name, created_at, user_id, items
- Items: item_id, content, status

Relationships:
- Each user can have many lists, but a list can only be associated with one user (one-to-many relationship).
- Each list can contain many tasks, and each task can belong to only one list (one-to-many relationship).

Schema:
- Users (user_id, name, email, password)
- Lists (list_id, list name, created_at, user_id, items)
- Items (item_id, content, status).

### PROJECT_PASSWORD ==> Di3qpnYlGJmwDA7w

### ANON_KEY ==> eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InZ3Z2RoeXhpbnVrY3d3Z2JzcGhxIiwicm9sZSI6ImFub24iLCJpYXQiOjE2ODM1MzM4ODksImV4cCI6MTk5OTEwOTg4OX0.tvxdgt1V1QJuWRL_yJRo4ukhlDzjy0g_046T85txthw

### URL ==> https://vwgdhyxinukcwwgbsphq.supabase.co

### JWT secret ==> 6jNY5AEE3F9ExGAysjku33q6XFr28rxzWRSavLYnJ2THcl1u6/9a2VyV401ZTNybb06YbYqPovIgwVr+9omVrQ==