Skip to content

Commit c282047

Browse files
Raj Nandan SharmaRaj Nandan Sharma
authored andcommitted
first commit
1 parent 6ddb55c commit c282047

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+6183
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
node_modules
33
/build
44
/.svelte-kit
5+
/src/lib/.kener
56
/package
67
.env
78
.env.*

components.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"$schema": "https://shadcn-svelte.com/schema.json",
3+
"style": "default",
4+
"tailwind": {
5+
"config": "tailwind.config.js",
6+
"css": "src/app.postcss",
7+
"baseColor": "slate"
8+
},
9+
"aliases": {
10+
"components": "$lib/components",
11+
"utils": "$lib/utils"
12+
}
13+
}

config/monitors.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
- name: Google Search
2+
description: Search the world's information, including webpages, images, videos and more.
3+
tag: "google-search"
4+
image: "/google.png"
5+
method: GET
6+
url: https://www.google.com/webhp
7+
- name: Svelte Website
8+
description: Cybernetically enhanced web apps
9+
tag: "svelte-website"
10+
method: GET
11+
url: https://svelte.dev/
12+
image: "/svelte.svg"
13+
- name: Cashfree Payments
14+
description: Cybernetically enhanced web apps
15+
tag: "cashfree-payments"
16+
method: GET
17+
url: https://www.cashfree.com/
18+
image: "https://cashfreelogo.cashfree.com/cashfreepayments/logopng4x/Group_4355.png"

config/site.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
title: "Kener"
2+
theme: "dark"
3+
siteURL: "https://kener.netlify.app"
4+
home: "/"
5+
logo: "/logo.svg"
6+
favicon: "/kener.png"
7+
github:
8+
owner: "rajnandan1"
9+
repo: "kener"
10+
metaTags:
11+
description: "Kener: An open-source Node.js status page application for real-time service monitoring, incident management, and customizable reporting. Simplify service outage tracking, enhance incident communication, and ensure a seamless user experience."
12+
keywords: "Node.js application, Open-source status page, Service monitoring tool, Real-time incident management, Customizable reporting, Service outage tracker, User-friendly dashboard, Incident communication platform, Scalable monitoring solution, Community-driven software, Website status tracker, Incident response tool, System status monitoring, Service reliability management, Incident alert system"
13+
og:description: "Kener: An open-source Node.js status page application for real-time service monitoring, incident management, and customizable reporting. Simplify service outage tracking, enhance incident communication, and ensure a seamless user experience."
14+
og:image: "/ss.png"
15+
og:title: "Kener - Open-Source Node.js Status Page: Real-Time Incident Management & Monitoring"
16+
og:type: "website"
17+
og:site_name: "Kener"
18+
twitter:card: "summary_large_image"
19+
twitter:site: "@_rajnandan_"
20+
twitter:creator: "@_rajnandan_"
21+
twitter:image: "/ss.png"
22+
twitter:title: "Kener - Open-Source Node.js Status Page: Real-Time Incident Management & Monitoring"
23+
twitter:description: "Kener: An open-source Node.js status page application for real-time service monitoring, incident management, and customizable reporting. Simplify service outage tracking, enhance incident communication, and ensure a seamless user experience."
24+
nav:
25+
- name: "Home"
26+
url: "/"
27+
- name: "About"
28+
url: "/about"
29+
- name: "Contact"
30+
url: "/contact"
31+
hero:
32+
title: Kener is a Open-Source Status Page System
33+
subtitle: Let your users know what's going on.
34+

jsconfig.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"extends": "./.svelte-kit/tsconfig.json",
3+
"compilerOptions": {
4+
"allowJs": true,
5+
"checkJs": true,
6+
"esModuleInterop": true,
7+
"forceConsistentCasingInFileNames": true,
8+
"resolveJsonModule": true,
9+
"skipLibCheck": true,
10+
"sourceMap": true,
11+
"strict": true,
12+
"moduleResolution": "bundler"
13+
}
14+
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias and https://kit.svelte.dev/docs/configuration#files
15+
//
16+
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
17+
// from the referenced tsconfig.json - TypeScript does not merge them in
18+
}

0 commit comments

Comments
 (0)