From bf06acdc392075be348177c53dbef5cb18b9ebd0 Mon Sep 17 00:00:00 2001 From: Annay Paul Date: Wed, 1 Nov 2023 10:45:08 +0600 Subject: [PATCH 1/3] [Bug-Fix] Removed space between 'sales force' from import statement in index.js --- awesome-oss-docs/src/constants/docs/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awesome-oss-docs/src/constants/docs/index.js b/awesome-oss-docs/src/constants/docs/index.js index 8c354c3..c5cbdf5 100644 --- a/awesome-oss-docs/src/constants/docs/index.js +++ b/awesome-oss-docs/src/constants/docs/index.js @@ -60,7 +60,7 @@ export default [ netflix, netlify, ory, - sales force, + salesforce, samsung, shopify, slackhq, From 128ee5653b5bd786f70bea29b0b874a5bdaed08b Mon Sep 17 00:00:00 2001 From: Annay Paul Date: Wed, 1 Nov 2023 10:48:02 +0600 Subject: [PATCH 2/3] [Enhancement] Added the RedHat Docs as mentioned in the README.md into redhat.js file --- .../constants/docs/orderByAlphabet/redhat.js | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 awesome-oss-docs/src/constants/docs/orderByAlphabet/redhat.js diff --git a/awesome-oss-docs/src/constants/docs/orderByAlphabet/redhat.js b/awesome-oss-docs/src/constants/docs/orderByAlphabet/redhat.js new file mode 100644 index 0000000..51b9df2 --- /dev/null +++ b/awesome-oss-docs/src/constants/docs/orderByAlphabet/redhat.js @@ -0,0 +1,34 @@ +export default { + title: 'RedHat Open Source Documentation', + documentations: [ + { + title: "CentOS Docs", + description: + "SA solid, predictable base to build upon, with extensive resources to build, test, release, and maintain code.", + projectUrl: "https://docs.centos.org", + owner: "Company Owned Documentation", + }, + { + title: "Ceph Docs", + description: + "A distributed object, block, and file storage platform.", + projectUrl: "https://docs.ceph.com/", + owner: "Company Owned Documentation", + }, + { + title: "Project QUAY Docs", + description: "Builds, analyzes, distributes your container images.", + projectUrl: "https://docs.projectquay.io/", + githubUrl: "https://github.com/quay/quay-docs)", + owner: "Community Owned Documentation", + }, + { + title: "WildFly Docs", + description: + "A flexible, lightweight, managed application runtime that helps you build amazing applications.", + projectUrl: "https://docs.wildfly.org/", + githubUrl: "https://github.com/wildfly/wildfly/tree/main/docs)", + owner: "Community Owned Documentation", + }, + ], + }; \ No newline at end of file From 546a1c561055dcd4f851d97b6c9ea9fdefbd451d Mon Sep 17 00:00:00 2001 From: Annay Paul Date: Wed, 1 Nov 2023 10:49:25 +0600 Subject: [PATCH 3/3] [Fix] Imported redhat from redhat.js into index.js --- awesome-oss-docs/src/constants/docs/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/awesome-oss-docs/src/constants/docs/index.js b/awesome-oss-docs/src/constants/docs/index.js index c5cbdf5..2a3084c 100644 --- a/awesome-oss-docs/src/constants/docs/index.js +++ b/awesome-oss-docs/src/constants/docs/index.js @@ -21,6 +21,7 @@ import mayadata from "./orderByAlphabet/mayadata"; import netflix from "./orderByAlphabet/netflix"; import netlify from "./orderByAlphabet/netlify"; import ory from "./orderByAlphabet/ory"; +import redhat from './orderByAlphabet/redhat'; import salesforce from "./orderByAlphabet/salesforce"; import samsung from "./orderByAlphabet/samsung"; import shopify from "./orderByAlphabet/shopify"; @@ -60,6 +61,7 @@ export default [ netflix, netlify, ory, + redhat, salesforce, samsung, shopify,