From cb9fa6e5e7df9570e1792012ba7fbe258727d99e Mon Sep 17 00:00:00 2001 From: Christine Belzie <105683440+CBID2@users.noreply.github.com> Date: Sat, 5 Aug 2023 02:42:09 -0400 Subject: [PATCH] chore: adding Video subcategory and resource for the open source section (#1494) --- database/data.ts | 5 +++++ database/index.ts | 1 + database/open_source/videos.json | 9 +++++++++ 3 files changed, 15 insertions(+) create mode 100644 database/open_source/videos.json diff --git a/database/data.ts b/database/data.ts index e3fd92344..4dd7662e3 100644 --- a/database/data.ts +++ b/database/data.ts @@ -128,6 +128,11 @@ export const sidebarData: ISidebar[] = [ url: '/open-source-tools', resources: DB.openSourceTools, }, + { + name: 'Videos', + url: '/open-source-videos', + resources: DB.openSourceVideos, + }, ], }, { diff --git a/database/index.ts b/database/index.ts index 82abb9a03..3d74569d5 100644 --- a/database/index.ts +++ b/database/index.ts @@ -61,6 +61,7 @@ export { default as deepLearning } from './machine_learning/deep-learning.json' export { default as openSourceBlogs } from './open_source/blogs.json' export { default as openSourceProjects } from './open_source/projects.json' export { default as openSourceTools } from './open_source/tools.json' +export { default as openSourceVideos } from './open_source/videos.json' // resources export { default as blogs } from './resources/blogs.json' export { default as officialdocs } from './resources/official-docs.json' diff --git a/database/open_source/videos.json b/database/open_source/videos.json new file mode 100644 index 000000000..ab890d3f8 --- /dev/null +++ b/database/open_source/videos.json @@ -0,0 +1,9 @@ +[ + { + "name": "How I choose Maintainers", + "description": "Even though the focus is on a specific project, this video provides great advice on how to maintain someone else's open source project.", + "url": "https://youtu.be/WPaN9vIyqt4", + "category": "open source", + "subcategory": "open-source-videos" + } +] \ No newline at end of file