apps/docs/content/guides/getting-started/quickstarts/hono.mdx
<$Partial path="quickstart_db_setup.mdx" />
Bootstrap the Hono example app from the Supabase Samples using the CLI.
npx supabase@latest bootstrap hono
Supabase's Agent Skills is a curated set of instructions that give your AI agent procedural knowledge about working with Supabase.
Install them so your AI coding agent can produce more accurate, reliable code using current Supabase patterns, such as authentication, server-side rendering, and database migrations, rather than relying solely on training data.
To install, run the following command in the root of your project:
npx skills add supabase/agent-skills
The package.json file in the project includes the necessary dependencies, including @supabase/supabase-js and @supabase/ssr to help with server-side auth.
npm install
Copy the .env.example file to .env and update the values with your Supabase project URL and publishable key, which you can get from the helper below, or from the project Connect panel.
Lastly, enable anonymous sign-ins in the Auth settings.
cp .env.example .env
<$Partial path="api_settings.mdx" variables={{ "framework": "", "tab": "" }} />
Start the app, go to http://localhost:5173.
Learn how server side auth works with Hono.
npm run dev