Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["denoland.vscode-deno"]
}
22 changes: 22 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
{
"[typescript]": {
"editor.defaultFormatter": "denoland.vscode-deno"
},
"deno.enablePaths": [
"supabase/functions"
],
"deno.lint": true,
"deno.unstable": [
"bare-node-builtins",
"byonm",
"sloppy-imports",
"unsafe-proto",
"webgpu",
"broadcast-channel",
"worker-options",
"cron",
"kv",
"ffi",
"fs",
"http",
"net"
],
"kiroAgent.configureMCP": "Disabled"
}
9 changes: 9 additions & 0 deletions SUPABASE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# SUPABASE DEVELOPMENT

Local Supabase development is available through the VSCode extension [Supabase](https://marketplace.visualstudio.com/items?itemName=Supabase.vscode-supabase-extension) and the installation instructions for at [Supabase Guides - Local Development](https://supabase.com/docs/guides/local-development).

To run Supabase locally, Docker must be installed and running. Reference the [Getting Started](https://supabase.com/docs/guides/local-development/cli/getting-started) guide for further details.

## Running locally

Once you have all of the prerequisites installed and running, enter `npm run supabase` in your terminal to start local development.
Loading