-
-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Raj Nandan Sharma
authored and
Raj Nandan Sharma
committed
Nov 14, 2024
1 parent
e1fe07c
commit e45b016
Showing
14 changed files
with
185 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
- name: OkBookmarks | ||
description: A free bookmark manager that lets you save and search your bookmarks in the cloud. | ||
tag: "frogment" | ||
image: "https://okbookmarks.com/assets/img/extension_icon128.png" | ||
api: | ||
method: GET | ||
url: https://okbookmarks.com | ||
- name: Earth | ||
description: Our blue planet | ||
tag: "earth" | ||
defaultStatus: "UP" | ||
image: "/earth.png" | ||
- name: Frogment | ||
description: A free openAPI spec editor and linter that breaks down your spec into fragments to make editing easier and more intuitive. Visit https://www.frogment.com | ||
tag: "frogment" | ||
image: "/frogment.png" | ||
api: | ||
method: GET | ||
url: https://www.frogment.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
title: "Kener" | ||
home: "/" | ||
logo: "/logo.png" | ||
github: | ||
owner: "rajnandan1" | ||
repo: "kener" | ||
incidentSince: 48 | ||
metaTags: | ||
description: "Kener: Open-source modern looking Node.js status page tool, designed to make service monitoring and incident handling a breeze. It offers a sleek and user-friendly interface that simplifies tracking service outages and improves how we communicate during incidents. And the best part? Kener integrates seamlessly with GitHub, making incident management a team effort—making it easier for us to track and fix issues together in a collaborative and friendly environment." | ||
keywords: "Node.js status page, Incident management tool, Service monitoring, Service outage tracking, Real-time status updates, GitHub integration for incidents, Open-source status page, Node.js monitoring application, Service reliability, User-friendly incident management, Collaborative incident resolution, Seamless outage communication, Service disruption tracker, Real-time incident alerts, Node.js status reporting" | ||
og:description: "Kener: Open-source Node.js status page tool, designed to make service monitoring and incident handling a breeze. It offers a sleek and user-friendly interface that simplifies tracking service outages and improves how we communicate during incidents. And the best part? Kener integrates seamlessly with GitHub, making incident management a team effort—making it easier for us to track and fix issues together in a collaborative and friendly environment." | ||
og:image: "https://kener.ing/ss.png" | ||
og:title: "Kener - Open-Source and Modern looking Node.js Status Page for Effortless Incident Management" | ||
og:type: "website" | ||
og:site_name: "Kener" | ||
twitter:card: "summary_large_image" | ||
twitter:site: "@_rajnandan_" | ||
twitter:creator: "@_rajnandan_" | ||
twitter:image: "https://kener.ing/ss.png" | ||
twitter:title: "Kener: Open-Source and Modern looking Node.js Status Page for Effortless Incident Management" | ||
twitter:description: "Kener: Open-source Node.js status page tool, designed to make service monitoring and incident handling a breeze. It offers a sleek and user-friendly interface that simplifies tracking service outages and improves how we communicate during incidents. And the best part? Kener integrates seamlessly with GitHub, making incident management a team effort—making it easier for us to track and fix issues together in a collaborative and friendly environment." | ||
nav: | ||
- name: "Documentation" | ||
url: "/docs" | ||
- name: "Github" | ||
url: "https://github.com/rajnandan1/kener" | ||
hero: | ||
title: Kener is a Open-Source Status Page System | ||
subtitle: Let your users know what's going on. | ||
footerHTML: | | ||
Made using | ||
<a href="https://github.com/rajnandan1/kener" target="_blank" rel="noreferrer" class="font-medium underline underline-offset-4"> | ||
Kener | ||
</a> | ||
an open source status page system built with Svelte and TailwindCSS. | ||
i18n: | ||
defaultLocale: "en" | ||
locales: | ||
en: "English" | ||
hi: "हिन्दी" | ||
zh-CN: "中文" | ||
ja: "日本語" | ||
vi: "Tiếng Việt" | ||
theme: dark |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,27 @@ | ||
version: '3.7' | ||
services: | ||
kener: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
container_name: kener | ||
env_file: .env | ||
image: rajnandan1/kener:release-candidate-0.0.16 # assuming this is final namespace/image | ||
container_name: kener-rc | ||
#env_file: .env #uncomment this, if you are using .env file | ||
environment: | ||
- TZ=Etc/GMT | ||
- PUID=911 | ||
- PGID=911 | ||
#- GH_TOKEN= | ||
#- API_TOKEN= | ||
#- API_IP= | ||
#- API_IP_REGEX= | ||
#- KENER_BASE_PATH= | ||
|
||
# If running on a LINUX HOST and not podman rootless these MUST BE SET | ||
# run "id $user" from command line and replace numbers below with output from command | ||
#- PUID=1000 # gid | ||
#- PGID=1000 # uid | ||
|
||
### Most likely DO NOT need to change anything below this ### | ||
|
||
#- PORT=3000 Port app listens on IN CONTAINER | ||
ports: | ||
- "3001:3001" | ||
- '3000:3000/tcp' | ||
volumes: | ||
- ./database:/app/database:rw | ||
restart: unless-stopped | ||
healthcheck: | ||
test: ["CMD", "wget", "--spider", "http://localhost:3001"] | ||
interval: 30s | ||
timeout: 30s | ||
retries: 3 | ||
- './database:/app/database:rw' | ||
- './config:/app/config' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
code:not([class^="language-"]) { | ||
@apply rounded bg-gray-100 px-1.5 py-0.5 font-mono text-sm text-xs dark:bg-gray-800; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.