mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
feat: Add repository field to package.json files across the project
This commit is contained in:
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/api-reference",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"main": "Index.ts",
|
||||
"scripts": {
|
||||
"start": "export NODE_OPTIONS='--max-old-space-size=8096' && node --require ts-node/register Index.ts",
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/accounts",
|
||||
"version": "0.1.0",
|
||||
"private": false,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"scripts": {
|
||||
"dev-build": "NODE_ENV=development node esbuild.config.js",
|
||||
"dev": "npx nodemon",
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/admin-dashboard",
|
||||
"version": "0.1.0",
|
||||
"private": false,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"dependencies": {
|
||||
"Common": "file:../Common",
|
||||
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/app",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"main": "Index.ts",
|
||||
"scripts": {
|
||||
"start": "export NODE_OPTIONS='--max-old-space-size=8096' && node --require ts-node/register Index.ts",
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/common",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "cd .. && export $(grep -v '^#' config.env | xargs) && cd Common && node node_modules/.bin/jest --runInBand ./Tests --detectOpenHandles",
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/dashboard",
|
||||
"version": "0.1.0",
|
||||
"private": false,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"scripts": {
|
||||
"generate-sw": "node scripts/generate-sw.js",
|
||||
"dev-build": "npm run generate-sw && NODE_ENV=development node esbuild.config.js",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"short_name": "OneUptime",
|
||||
"name": "OneUptime - Complete Observability Platform",
|
||||
"id": "/dashboard/oneuptime",
|
||||
"description": "Monitor, observe, debug, and resolve. Everything you need to build reliable software in one open source platform.",
|
||||
"description": "Monitor, observe, debug, and resolve. Everything you need to build reliable software in one open-source platform.",
|
||||
"iarc_rating_id": "60bf3666-0cc5-4ac4-a5c7-726a4d52b7b6",
|
||||
"widgets": [],
|
||||
"icons": [
|
||||
|
||||
@@ -146,7 +146,7 @@ const DashboardNavbar: FunctionComponent<ComponentProps> = (
|
||||
const moreMenuFooter: any = {
|
||||
title: "Report a bug or request a feature.",
|
||||
description:
|
||||
"We embrace open source! Please report any issue you find and make feature requests on GitHub.",
|
||||
"We embrace open-source! Please report any issue you find and make feature requests on GitHub.",
|
||||
link: URL.fromString(
|
||||
"https://github.com/OneUptime/oneuptime/issues/new/choose",
|
||||
),
|
||||
|
||||
@@ -102,7 +102,7 @@ const TelemetryDocumentation: FunctionComponent = (): ReactElement => {
|
||||
|
||||
<ImageTiles
|
||||
title="Integrate with Fluentd"
|
||||
description="OneUptime supports a native integration with Fluentd. Fluentd is an open source data collector for unified logging layer. Fluentd allows you to unify data collection and consumption for a better use and understanding of data."
|
||||
description="OneUptime supports a native integration with Fluentd. Fluentd is an open-source data collector for unified logging layer. Fluentd allows you to unify data collection and consumption for a better use and understanding of data."
|
||||
tiles={[
|
||||
{
|
||||
image: DockerImage,
|
||||
@@ -139,7 +139,7 @@ const TelemetryDocumentation: FunctionComponent = (): ReactElement => {
|
||||
|
||||
<ImageTiles
|
||||
title="Integrate with FluentBit"
|
||||
description="OneUptime supports a native integration with FluentBit. FluentBit is an open source data collector for unified logging and telemetry layer. FluentBit allows you to unify data collection and consumption for a better use and understanding of data."
|
||||
description="OneUptime supports a native integration with FluentBit. FluentBit is an open-source data collector for unified logging and telemetry layer. FluentBit allows you to unify data collection and consumption for a better use and understanding of data."
|
||||
tiles={[
|
||||
{
|
||||
image: DockerImage,
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/docs",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"main": "Index.ts",
|
||||
"scripts": {
|
||||
"start": "export NODE_OPTIONS='--max-old-space-size=8096' && node --require ts-node/register Index.ts",
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/e2e",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"preinstall": "npx playwright install-deps && npx playwright install",
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/fluentd",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
|
||||
@@ -372,7 +372,7 @@ export const PageSEOConfig: Record<string, PageSEOData> = {
|
||||
"/oss-friends": {
|
||||
title: "OSS Friends | Open Source Partners | OneUptime",
|
||||
description:
|
||||
"Meet our open source friends and partners. OneUptime is proud to be part of the open source community.",
|
||||
"Meet our open-source friends and partners. OneUptime is proud to be part of the open-source community.",
|
||||
canonicalPath: "/oss-friends",
|
||||
twitterCard: "summary",
|
||||
pageType: "other",
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
<div class="py-16">
|
||||
<div class="mx-auto max-w-8xl px-6 lg:px-8">
|
||||
<div class="mx-auto max-w-4xl text-center">
|
||||
<h1 class="text-3xl font-bold tracking-tight text-gray-900">OneUptime is an open source observability platform.</h1>
|
||||
<p class="mt-6 text-lg leading-8 text-gray-600">Monitor, Observe, Debug, Resolve. Everything you need to build reliable software in one open source platform. Get started today.</p>
|
||||
<h1 class="text-3xl font-bold tracking-tight text-gray-900">OneUptime is an open-source observability platform.</h1>
|
||||
<p class="mt-6 text-lg leading-8 text-gray-600">Monitor, Observe, Debug, Resolve. Everything you need to build reliable software in one open-source platform. Get started today.</p>
|
||||
<div class="mt-10 flex items-center justify-center gap-x-6">
|
||||
<a href="/accounts/register" class="rounded-md bg-indigo-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600">Get started</a>
|
||||
<a href="/enterprise/demo" class="text-sm font-semibold leading-6 text-gray-900">Request Demo <span aria-hidden="true">→</span></a>
|
||||
|
||||
@@ -3,10 +3,10 @@
|
||||
<div class="md:flex justify-between">
|
||||
<div class="mx-auto max-w-2xl lg:mx-0">
|
||||
<h2 class="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl">
|
||||
We're proudly open source. 🚀
|
||||
We're proudly open-source. 🚀
|
||||
</h2>
|
||||
<p class="mt-6 text-base leading-7 text-gray-600">
|
||||
Open-source wins, open-software wins, open-protocol wins. Our platform is built on open source technologies and we're proud to contribute back to the community.
|
||||
Open-source wins, open-software wins, open-protocol wins. Our platform is built on open-source technologies and we're proud to contribute back to the community.
|
||||
</p>
|
||||
</div>
|
||||
<div class="mt-10">
|
||||
|
||||
@@ -109,7 +109,7 @@
|
||||
<dl class="mx-auto mt-8 grid max-w-2xl grid-cols-1 gap-x-8 gap-y-8 text-base leading-7 lg:mx-0 lg:max-w-none">
|
||||
<div>
|
||||
<dt class="font-semibold text-gray-900">Open Source Everything.</dt>
|
||||
<dd class="mt-1 text-gray-600">At OneUptime, we pride ourselves on being a fully open-source company, not an open-core company. This means that every line of code we write is available on GitHub for everyone to view, use, and contribute to. This approach is a cornerstone of our strategy. We believe open source wins, open software wins, open protocol wins. The only way to become a standard is to be open-source. </dd>
|
||||
<dd class="mt-1 text-gray-600">At OneUptime, we pride ourselves on being a fully open-source company, not an open-core company. This means that every line of code we write is available on GitHub for everyone to view, use, and contribute to. This approach is a cornerstone of our strategy. We believe open-source wins, open software wins, open protocol wins. The only way to become a standard is to be open-source. </dd>
|
||||
</div>
|
||||
<div>
|
||||
<dt class="font-semibold text-gray-900">Developers First.</dt>
|
||||
@@ -127,7 +127,7 @@
|
||||
<div class="space-y-8 sm:space-y-12">
|
||||
<div class="space-y-5 sm:mx-auto sm:max-w-xl sm:space-y-4 lg:max-w-5xl">
|
||||
<h2 class="text-3xl font-bold tracking-tight sm:text-4xl">It's people who make all of this happen. </h2>
|
||||
<p class="text-xl text-gray-500">We celebrate our top 30 open source contributors. It's they who made all of this happen.</p>
|
||||
<p class="text-xl text-gray-500">We celebrate our top 30 open-source contributors. It's they who made all of this happen.</p>
|
||||
</div>
|
||||
<ul role="list" class="mx-auto grid grid-cols-2 gap-x-4 gap-y-8 sm:grid-cols-4 md:gap-x-6 lg:max-w-5xl lg:gap-x-8 lg:gap-y-12 xl:grid-cols-6">
|
||||
<% for(var i=0; i<30; i++) {%>
|
||||
@@ -160,10 +160,10 @@
|
||||
<div class="py-24 px-6 sm:px-6 sm:py-32 lg:px-8">
|
||||
<div class="mx-auto max-w-2xl text-center">
|
||||
<h2 class="text-4xl font-bold tracking-tight text-gray-900"><span class="text-lg">We are hiring.</span><br>Looking to work on an open-source SRE platform?</h2>
|
||||
<p class="mx-auto mt-6 max-w-xl text-lg leading-8 text-gray-600">We always give first priority to open-source contributors and our interview process also involves contributing to open source. Check out open roles below.</p>
|
||||
<p class="mx-auto mt-6 max-w-xl text-lg leading-8 text-gray-600">We always give first priority to open-source contributors and our interview process also involves contributing to open-source. Check out open roles below.</p>
|
||||
<div class="mt-10 flex items-center justify-center gap-x-6">
|
||||
<a href="https://github.com/OneUptime/interview" class="hover:text-white rounded-md bg-indigo-600 px-3.5 py-1.5 text-base font-semibold leading-7 text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600">See open roles</a>
|
||||
<a href="https://github.com/oneuptime/oneuptime" class="text-base font-semibold leading-7 text-gray-900">Contribute to open source project <span aria-hidden="true">→</span></a>
|
||||
<a href="https://github.com/oneuptime/oneuptime" class="text-base font-semibold leading-7 text-gray-900">Contribute to open-source project <span aria-hidden="true">→</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
</div>
|
||||
<h1 class="text-6xl font-bold tracking-tight text-gray-900 sm:text-6xl mt-8 mb-8">Complete Monitoring <br/> & Observability Platform</h1>
|
||||
<p class="mt-6 text-xl sm:text-2xl leading-8 text-gray-600">Monitor, Observe, Debug, Resolve. Everything you
|
||||
need to build reliable software in one open source platform.</p>
|
||||
need to build reliable software in one open-source platform.</p>
|
||||
<div class="mt-10 flex items-center justify-center gap-x-6">
|
||||
<a href="/accounts/register"
|
||||
class="rounded-md bg-indigo-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600">Get
|
||||
|
||||
@@ -326,7 +326,7 @@
|
||||
|
||||
<div class="ml-4">
|
||||
<p class="text-base font-medium text-gray-900">Merch Store</p>
|
||||
<p class="mt-1 text-sm text-gray-500">Buy our merch and support open source development.</p>
|
||||
<p class="mt-1 text-sm text-gray-500">Buy our merch and support open-source development.</p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
||||
@@ -576,7 +576,7 @@
|
||||
bundled
|
||||
with the Services or Software. These third party software programs are governed by their own license terms,
|
||||
which
|
||||
may include open source or free software licenses, and those terms will prevail over this Agreement as to Your
|
||||
may include open-source or free software licenses, and those terms will prevail over this Agreement as to Your
|
||||
use
|
||||
of the third party programs. Nothing in this Agreement limits Your or Your Users’ rights under, or grants You or
|
||||
Your User rights that supersede, the terms of any such third party program.</p>
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/home",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"main": "Index.ts",
|
||||
"scripts": {
|
||||
"start": "export NODE_OPTIONS='--max-old-space-size=8096' && node --require ts-node/register Index.ts",
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/incoming-request-ingest",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "export NODE_OPTIONS='--max-old-space-size=8096' && node --require ts-node/register Index.ts",
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/isolated-vm",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "export NODE_OPTIONS='--max-old-space-size=8096' && node --require ts-node/register Index.ts",
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/mcp-server",
|
||||
"version": "1.0.0",
|
||||
"description": "OneUptime MCP Server",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"main": "Index.ts",
|
||||
"bin": {
|
||||
"oneuptime-mcp": "./Index.ts"
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/nginx",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/probe",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "export NODE_OPTIONS='--max-old-space-size=8096' && node --require ts-node/register Index.ts",
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/probe-ingest",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "export NODE_OPTIONS='--max-old-space-size=8096' && node --require ts-node/register Index.ts",
|
||||
|
||||
@@ -61,7 +61,7 @@ All under one platform.
|
||||
|
||||
OneUptime Cloud is the easiest and fastest way to monitor your website uptime and performance. You can sign up for free to [OneUptime Cloud](https://oneuptime.com) and enjoy the full benefits of OneUptime without any installation or maintenance hassle.
|
||||
|
||||
By using OneUptime Cloud, you also support the development of OneUptime open source project, which is a powerful and flexible tool for website monitoring. You can find more information about OneUptime open source project on [GitHub](##Philosophy). The code of OneUptime is completely open source, which means you can access, modify, and distribute it freely. You can also contribute to the project by reporting issues, suggesting features, or submitting pull requests.
|
||||
By using OneUptime Cloud, you also support the development of OneUptime open-source project, which is a powerful and flexible tool for website monitoring. You can find more information about OneUptime open-source project on [GitHub](##Philosophy). The code of OneUptime is completely open-source, which means you can access, modify, and distribute it freely. You can also contribute to the project by reporting issues, suggesting features, or submitting pull requests.
|
||||
|
||||
If you need advanced features, such as API Access, Advanced Workflows, or Advanced Access Control, you can upgrade to a paid plan anytime. You can compare the different plans and pricing on [OneUptime Pricing](https://oneuptime.com/pricing) page.
|
||||
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/scripts",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"scripts": {
|
||||
"compile": "tsc"
|
||||
},
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/server-monitor-ingest",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "export NODE_OPTIONS='--max-old-space-size=8096' && node --require ts-node/register Index.ts",
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/status-page",
|
||||
"version": "0.1.0",
|
||||
"private": false,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "npx nodemon",
|
||||
"build": "NODE_ENV=production node esbuild.config.js",
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/telemetry",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "export NODE_OPTIONS='--max-old-space-size=8096 --use-openssl-ca' && node --require ts-node/register Index.ts",
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/test-server",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "export NODE_OPTIONS='--max-old-space-size=8096' && node --require ts-node/register Index.ts",
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/worker",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"main": "Index.ts",
|
||||
"scripts": {
|
||||
"start": "export NODE_OPTIONS='--max-old-space-size=8096' && node --require ts-node/register Index.ts",
|
||||
|
||||
@@ -2,6 +2,10 @@
|
||||
"name": "@oneuptime/workflow",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/OneUptime/oneuptime"
|
||||
},
|
||||
"main": "Index.ts",
|
||||
"scripts": {
|
||||
"start": "export NODE_OPTIONS='--max-old-space-size=8096' && node --require ts-node/register Index.ts",
|
||||
|
||||
Reference in New Issue
Block a user