···19192020Use the above snippet to try it out.
21212222-Learn more about [all the endpoints](/api-server/openapi) we provide.
2323-2422We currently do not have an SDK to make the best out of it. Any contributions
2523are welcome.
2624
-6
apps/docs/getting-started.mdx
···11-## Trying OpenStatus
22-33-The easiest way to quickly try the app is to signup on
44-[www.openstatus.dev](https://www.openstatus.dev)
55-66-The signup is free.
+1-1
apps/docs/getting-started/status-widget.mdx
···6969Component. Small reminder that we are using shadcn ui and tailwindcss. You might
7070want to update the `bg-muted` and `text-foreground` classes to your needs.
71717272-
7272+
73737474We are using `zod` to validate the response. You can use any other library if
7575you want or just remove it. But better be safe than sorry.
+2
apps/docs/incident-automation/get-started.mdx
···1616Incident automation allows you to automate these actions.
17171818## How to define an incident automation? ๐ค
1919+2020+Incident automation is defined in a YAML file.
+4
apps/docs/integrations/discord.mdx
···66channel. You can set up a webhook in the Discord settings. The webhook URL
77should look something like this:
88`https://discordapp.com/api/webhooks/123456789012345678/abcdefghijklmnopqrstuvwxyz1234567890`
99+1010+## How to set up your Discord webhook
1111+1212+https://support.discord.com/hc/en-us/articles/228383668
+26-2
apps/docs/introduction.mdx
···22title: What is OpenStatus?
33---
4455-OpenStatus is an open-source alternative to your current monitoring service with
66-a beautiful status page.
55+OpenStatus is an open-source monitoring service with a beautiful status page and
66+incident management.
77+88+## Trying OpenStatus
99+1010+The easiest way to quickly try the app is to signup on
1111+[www.openstatus.dev](https://www.openstatus.dev)
1212+1313+The signup is free.
714815## Getting Started
916···1421 the app
1522- **Self-hosting**: if you want greater control over your data and want to run
1623 the app on your own server
2424+2525+## Start with OpenStatus
2626+2727+<CardGroup cols={2}>
2828+ <Card title="Alert" href="/getting-started/alerting">
2929+ Learn how to set up alerting for your monitors
3030+ </Card>
3131+ <Card title="Heartbeat" href="/getting-started/heartbeat">
3232+ Learn how to create your first heartbeat monitor
3333+ </Card>
3434+ <Card title="Monitor" href="/getting-started/monitor">
3535+ Learn how to create your first monitor
3636+ </Card>
3737+ <Card title="Status Page" href="/getting-started/status-page">
3838+ Learn how to set up your status page
3939+ </Card>
4040+</CardGroup>
···11-/// <reference types="next" />
22-/// <reference types="next/image-types/global" />
33-44-// NOTE: This file should not be edited
55-// see https://nextjs.org/docs/basic-features/typescript for more information.