···4455import { Aside } from "@astrojs/starlight/components";
6677+import { Image } from 'astro:assets';
88+99+import Drizzle from '../../../assets/setup-env/drizzle-studio.png';
1010+711<Aside>WIP</Aside>
812913# Configuration of the .env file
···3741 variable. It should look something like this (real values without
3842 censorship):
39434040-
4444+41454246```
4347# RESEND for email
···119123You will need to create an API token, Go to Auth tokens > Workspace tokens > Add
120124a new token > Select your token
121125122122-
123126124127```
125128# TinyBird
···349352350353It contains some dummy data that you can use to test the application.
351354352352-
355355+356356+357357+ <Image
358358+ src={Drizzle}
359359+ alt="Drizzle"
360360+ />
361361+362362+353363354364```bash
355365cd packages/db
···44---
55import { Aside } from '@astrojs/starlight/components';
6677+import { Image } from 'astro:assets';
88+99+import Widget from '../../../../assets/status-widget/widget-example.png';
1010+1111+1212+713We have added a public endpoint where you can access the status of your status
814page. To access it, you only need the unique `:slug` you have chosen for your
915page.
···7480Component. Small reminder that we are using shadcn ui and tailwindcss. You might
7581want to update the `bg-muted` and `text-foreground` classes to your needs.
76827777-
8383+8484+ <Image
8585+ src={Widget}
8686+ alt="Status Widget"
8787+ />
8888+8989+78907991We are using `zod` to validate the response. You can use any other library if
8092you want or just remove it. But better be safe than sorry.