Skip to content

Commit

Permalink
chore: Added Roadmaps #1387 (#1630)
Browse files Browse the repository at this point in the history
* feat: Added Roadmaps #1387

* Update database/Roadmaps/FrontendRoadmap.json

Co-authored-by: Christine Belzie <105683440+CBID2@users.noreply.github.com>

* data.ts is updated

* Update DevOpsRoadmap.json

* chore: fix errors

---------

Co-authored-by: Christine Belzie <105683440+CBID2@users.noreply.github.com>
Co-authored-by: Rupali Haldiya <78981177+rupali-codes@users.noreply.github.com>
Co-authored-by: Rupali Haldiya <rupali7487@gmail.com>
  • Loading branch information
4 people authored Sep 5, 2023
1 parent b16e59b commit 34aa684
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 6 deletions.
23 changes: 18 additions & 5 deletions database/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export const sidebarData: ISidebar[] = [
name: 'APIs',
url: '/api',
resources: DB.api,
}
},
],
},
{
Expand Down Expand Up @@ -131,15 +131,27 @@ export const sidebarData: ISidebar[] = [
category: 'devops',
subcategory: [
{ name: 'CI/CD', url: '/cicd', resources: DB.cicd },
{ name: 'DevOps Life Cycle', url: '/devopsLifecycle', resources: DB.devopsLifecycle },
{ name: 'DevOps Methodologies', url: '/devopsMethodologies', resources: DB.devopsMethodologies },
{
name: 'DevOps Life Cycle',
url: '/devopsLifecycle',
resources: DB.devopsLifecycle,
},
{
name: 'DevOps Methodologies',
url: '/devopsMethodologies',
resources: DB.devopsMethodologies,
},
{ name: 'docker', url: '/docker', resources: DB.docker },
{
name: 'kubernetes',
url: '/kubernetes',
resources: DB.kubernetes,
},
{ name: 'microservices', url: '/microservices', resources: DB.microservices },
{
name: 'microservices',
url: '/microservices',
resources: DB.microservices,
},
],
},
{
Expand Down Expand Up @@ -265,7 +277,8 @@ export const sidebarData: ISidebar[] = [
url: '/other-resources',
resources: DB.otherResources,
},
{ name: 'communities', url: '/communities', resources: DB.communities },
{ name: 'Communities', url: '/communities', resources: DB.communities },
{ name: 'Roadmaps', url: '/roadmaps', resources: DB.roadmaps },
],
},
]
Expand Down
3 changes: 2 additions & 1 deletion database/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,6 @@ export { default as devtools } from './other/devtools.json'
export { default as podcasts } from './other/podcasts.json'
export { default as otherResources } from './other/other-resources.json'
export { default as communities } from './other/communities.json'
export { default as roadmaps } from './other/roadmaps.json'
// competitive programming
export { default as platforms } from './competitive_programming/platforms.json'
export { default as platforms } from './competitive_programming/platforms.json'
9 changes: 9 additions & 0 deletions database/other/roadmaps.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[
{
"name": "Fronted Roadmap",
"description": "In this blog post, you'll learn all the tips and tricks to get started in frontend development",
"url": "https://surajk00.hashnode.dev/web-development-guide-for-an-absolute-beginner-2023?source=more_articles_bottom_blogs",
"category": "other",
"subcategory": "roadmaps"
}
]
1 change: 1 addition & 0 deletions types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ export const subcategoryArray = [
'github',
'other-resources',
'podcasts',
'roadmaps',
// competitive programming
'platforms',
]

1 comment on commit 34aa684

@vercel
Copy link

@vercel vercel bot commented on 34aa684 Sep 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.