https://github.com/isaacdarcilla/supabase-edge-nextjs
An example of Supabase Edge Functions with Next.js
https://github.com/isaacdarcilla/supabase-edge-nextjs
edge-functions nextjs supabase
Last synced: about 1 month ago
JSON representation
An example of Supabase Edge Functions with Next.js
- Host: GitHub
- URL: https://github.com/isaacdarcilla/supabase-edge-nextjs
- Owner: isaacdarcilla
- Created: 2024-07-03T00:20:13.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-09-18T04:15:41.000Z (7 months ago)
- Last Synced: 2025-01-24T18:25:26.713Z (3 months ago)
- Topics: edge-functions, nextjs, supabase
- Language: TypeScript
- Homepage: https://isaacdarcilla.com
- Size: 219 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Supabase Edge Functions and NextJS

### Running Locally
```
$ git clone https://github.com/isaacdarcilla/supabase-edge-nextjs
$ cd supabase-edge-nextjs
$ cp .env.example .env.local
$ bun install // or pnpm, npm, yarn
$ bun run dev // or pnpm, npm, yarn
```Should now be accessible in `http://localhost:3000`
### Edge Functions
The Supabase edge functions for `students` can be viewed in [supabase/functions/students](https://github.com/isaacdarcilla/supabase-edge-nextjs/blob/main/supabase/functions/students/index.ts) folder.
### Linting
```
$ bun lint // or pnpm, npm, yarn
```Linting is automatically executed on commit.