apps/docs/content/guides/getting-started/quickstarts/astrojs.mdx
<$Partial path="quickstart_db_setup.mdx" />
Create an Astro app using the npm create command.
npm create astro@latest my-app
cd my-app
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
Install the supabase-js client library and the @astrojs/node adapter to enable server-side rendering.
npm install @supabase/supabase-js @astrojs/node
Update your astro.config.mjs.
import node from '@astrojs/node'
import { defineConfig } from 'astro/config'
export default defineConfig({
output: 'server',
adapter: node({
mode: 'standalone',
}),
})
Create a .env.local file and populate with your Supabase connection variables that you can get from the helper below, or from the project Connect panel:
PUBLIC_SUPABASE_URL=<SUBSTITUTE_SUPABASE_URL>
PUBLIC_SUPABASE_PUBLISHABLE_KEY=<SUBSTITUTE_SUPABASE_PUBLISHABLE_KEY>
<$Partial path="api_settings.mdx" variables={{ "framework": "astro", "tab": "frameworks" }} />
Create a utility file to initialize the Supabase client:
import { createClient } from '@supabase/supabase-js'
const supabaseUrl = import.meta.env.PUBLIC_SUPABASE_URL
const supabasePublishableKey = import.meta.env.PUBLIC_SUPABASE_PUBLISHABLE_KEY
export function createServerClient() {
return createClient(supabaseUrl, supabasePublishableKey)
}
Create a new file at src/pages/instruments.astro and populate with the following.
This queries all rows from the instruments table you created earlier and renders them on the page.
---
import { createServerClient } from "../lib/supabase";
const supabase = createServerClient();
const { data: instruments } = await supabase.from("instruments").select();
---
<html>
<head>
<title>Instruments</title>
</head>
<body>
<ul>
{instruments?.map((instrument) => (
<li>{instrument.name}</li>
))}
</ul>
</body>
</html>
Run the development server, go to http://localhost:4321/instruments in your browser of choice to check the list of instruments.
npm run dev