Compare commits
2 Commits
cdcee387b5
...
36af41cbe4
Author | SHA1 | Date | |
---|---|---|---|
36af41cbe4 | |||
fbde7667bc |
@ -20,11 +20,4 @@ your services and start monitoring them. See [Next Steps](#next-steps) for more.
|
|||||||
### Creating your Account
|
### Creating your Account
|
||||||
- First, head to our [Dashboard](https://pulseapp.cc/dashboard) and fill out the form. ![Registering](https://cdn.rainnny.club/auhNOjrcYz6u.png)
|
- First, head to our [Dashboard](https://pulseapp.cc/dashboard) and fill out the form. ![Registering](https://cdn.rainnny.club/auhNOjrcYz6u.png)
|
||||||
- Next, complete the onboarding process and set up your first organization, and status page. ![Onboarding](https://cdn.rainnny.club/AfDgjHG5QTpZ.png)
|
- Next, complete the onboarding process and set up your first organization, and status page. ![Onboarding](https://cdn.rainnny.club/AfDgjHG5QTpZ.png)
|
||||||
- Finally, you can [start monitoring your services](#next-steps)!
|
- Finally, you can [start monitoring your services](#next-steps)!
|
||||||
|
|
||||||
### Next Steps
|
|
||||||
#### Components
|
|
||||||
...
|
|
||||||
|
|
||||||
#### Automations
|
|
||||||
...
|
|
8
docs/👨🏼💻 Self Hosting/docker.mdx
Normal file
8
docs/👨🏼💻 Self Hosting/docker.mdx
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
title: '🐋 Docker'
|
||||||
|
published: '2024-10-07'
|
||||||
|
summary: 'petentium usu tota noluisse errem elaboraret auctor.'
|
||||||
|
---
|
||||||
|
|
||||||
|
# Deploying on Docker
|
||||||
|
...
|
8
docs/🖥️ Service Monitoring/components.mdx
Normal file
8
docs/🖥️ Service Monitoring/components.mdx
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
title: '🧩 Components'
|
||||||
|
published: '2024-10-07'
|
||||||
|
summary: 'petentium usu tota noluisse errem elaboraret auctor.'
|
||||||
|
---
|
||||||
|
|
||||||
|
# Components
|
||||||
|
...
|
8
docs/🖥️ Service Monitoring/supported-services.mdx
Normal file
8
docs/🖥️ Service Monitoring/supported-services.mdx
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
title: '✔️ Supported Services'
|
||||||
|
published: '2024-10-07'
|
||||||
|
summary: 'petentium usu tota noluisse errem elaboraret auctor.'
|
||||||
|
---
|
||||||
|
|
||||||
|
# Supported Services
|
||||||
|
Below is a list of all the services that are currently supported by Pulse App. Are we missing a service? Please [open an issue](https://git.rainnny.club/PulseApp/API/issues)!
|
Binary file not shown.
Before Width: | Height: | Size: 43 KiB |
@ -26,8 +26,8 @@ const DocsPage = async ({
|
|||||||
}: {
|
}: {
|
||||||
params: Promise<{ slug: string[] }>;
|
params: Promise<{ slug: string[] }>;
|
||||||
}): Promise<ReactElement> => {
|
}): Promise<ReactElement> => {
|
||||||
const slug: string = (((await params).slug as string[]) || undefined)?.join(
|
const slug: string = decodeURIComponent(
|
||||||
"/"
|
(((await params).slug as string[]) || undefined)?.join("/")
|
||||||
);
|
);
|
||||||
|
|
||||||
// Get the content to display based on the provided slug
|
// Get the content to display based on the provided slug
|
||||||
|
@ -148,7 +148,7 @@ const Footer = ({ page }: { page: DocsContentMetadata }): ReactElement => {
|
|||||||
{/* Edit on Git */}
|
{/* Edit on Git */}
|
||||||
<Link
|
<Link
|
||||||
className="flex gap-1.5 items-center text-xs hover:opacity-75 transition-all transform-gpu group"
|
className="flex gap-1.5 items-center text-xs hover:opacity-75 transition-all transform-gpu group"
|
||||||
href={`https://git.rainnny.club/PulseApp/docs/src/branch/master/docs/${page.slug}.md`}
|
href={`https://git.rainnny.club/PulseApp/docs/src/branch/master/docs/${page.slug}${page.extension}`}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
draggable={false}
|
draggable={false}
|
||||||
>
|
>
|
||||||
|
@ -83,7 +83,7 @@ const CategoryItem = ({
|
|||||||
{hasChildren && (
|
{hasChildren && (
|
||||||
<motion.div
|
<motion.div
|
||||||
initial={false}
|
initial={false}
|
||||||
animate={{ rotate: isOpen ? 90 : 180 }}
|
animate={{ rotate: isOpen ? 90 : 0 }}
|
||||||
transition={{ duration: 0.2 }}
|
transition={{ duration: 0.2 }}
|
||||||
>
|
>
|
||||||
<ChevronRight className="w-4 h-4" />
|
<ChevronRight className="w-4 h-4" />
|
||||||
|
Reference in New Issue
Block a user