https://github.com/angelfire/heyatlas-fe
TodoList using supabase
https://github.com/angelfire/heyatlas-fe
nextjs react supabase
Last synced: about 2 months ago
JSON representation
TodoList using supabase
- Host: GitHub
- URL: https://github.com/angelfire/heyatlas-fe
- Owner: Angelfire
- Created: 2023-02-23T15:28:12.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-23T15:30:27.000Z (over 3 years ago)
- Last Synced: 2025-03-20T23:14:15.095Z (about 1 year ago)
- Topics: nextjs, react, supabase
- Language: TypeScript
- Homepage:
- Size: 175 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todo List
## Demo Video
[TodoList demo video](https://www.loom.com/share/5bd490dc69fd449292e60e74a8739ccc)
## Architecture

## DB
```sql
CREATE TABLE todos (
id INTEGER PRIMARY KEY,
task_description TEXT NOT NULL,
task_order INTEGER NOT NULL
);
```
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file.
[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/todos](http://localhost:3000/api/todos/index.ts). This endpoint can be edited in `pages/api/todos/index.ts`.
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.