Openstatus www.openstatus.dev

๐Ÿ”— fix docs links (#1247)

authored by

Thibault Le Ouay and committed by
GitHub
f5c36f9f 031f14a2

+28 -6
+13 -3
apps/docs/src/content/docs/contributing/setup-env.mdx
··· 4 4 5 5 import { Aside } from "@astrojs/starlight/components"; 6 6 7 + import { Image } from 'astro:assets'; 8 + 9 + import Drizzle from '../../../assets/setup-env/drizzle-studio.png'; 10 + 7 11 <Aside>WIP</Aside> 8 12 9 13 # Configuration of the .env file ··· 37 41 variable. It should look something like this (real values without 38 42 censorship): 39 43 40 - ![Create your monitor](/images/setup-env/resend.png) 44 + 41 45 42 46 ``` 43 47 # RESEND for email ··· 119 123 You will need to create an API token, Go to Auth tokens > Workspace tokens > Add 120 124 a new token > Select your token 121 125 122 - ![Create your monitor](/images/setup-env/tinybird.png) 123 126 124 127 ``` 125 128 # TinyBird ··· 349 352 350 353 It contains some dummy data that you can use to test the application. 351 354 352 - ![Drizzle studio](/images/setup-env/drizzle-studio.png) 355 + 356 + 357 + <Image 358 + src={Drizzle} 359 + alt="Drizzle" 360 + /> 361 + 362 + 353 363 354 364 ```bash 355 365 cd packages/db
+2 -2
apps/docs/src/content/docs/monitoring/create-monitor.mdx
··· 77 77 href="/monitoring/customization/frequency" 78 78 /> 79 79 <LinkCard 80 - title="Regions" 81 - href="/monitoring/customization/regions" 80 + title="Locations" 81 + href="/monitoring/customization/locations" 82 82 /> 83 83 <LinkCard 84 84 title="Timing"
+13 -1
apps/docs/src/content/docs/status-page/advanced/widget.mdx
··· 4 4 --- 5 5 import { Aside } from '@astrojs/starlight/components'; 6 6 7 + import { Image } from 'astro:assets'; 8 + 9 + import Widget from '../../../../assets/status-widget/widget-example.png'; 10 + 11 + 12 + 7 13 We have added a public endpoint where you can access the status of your status 8 14 page. To access it, you only need the unique `:slug` you have chosen for your 9 15 page. ··· 74 80 Component. Small reminder that we are using shadcn ui and tailwindcss. You might 75 81 want to update the `bg-muted` and `text-foreground` classes to your needs. 76 82 77 - ![Status Widget](/images/status-widget/widget-example.png) 83 + 84 + <Image 85 + src={Widget} 86 + alt="Status Widget" 87 + /> 88 + 89 + 78 90 79 91 We are using `zod` to validate the response. You can use any other library if 80 92 you want or just remove it. But better be safe than sorry.