This repository has been archived by the owner on Apr 29, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add "Additional Resources" and "Maintainers Guestbook" pages (#75)
* feat: add additional-resources.md * feat: add guides section * feat: add blog posts section * feat: add maintainers-guestbook.md * chores: update sidebar to add maintainers guestbook and additional resources * fix: minor wording in maintainers guestbook * fix: update getting practical chapter to include maintainers guestbook * feat: add pizza-slice.png * fix: link to pizza-slice icon in index.html * fix: update README to include Additional Resources
- Loading branch information
Showing
7 changed files
with
121 additions
and
86 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
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,15 +1,14 @@ | ||
- **Chapters** | ||
|
||
- [Open Source Maintainer](/intro.md) | ||
- [Setting Up Your Project](/how-to-setup-your-project.md) | ||
- [Issues and Pull Requests](/issues-and-pull-requests.md) | ||
- [Maintainer Power Ups](/maintainer-powerups.md) | ||
- [Setting Up Your Team](/your-team.md) | ||
- [Building and Nurturing Community](/building-community.md) | ||
- [Effective Communication and Collaboration](/communication-and-collaboration.md) | ||
- [Maintaining Code Quality and Documentation](/maintaining-code-quality.md) | ||
- [The Power of Metrics and Analytics](/metrics-and-analytics.md) | ||
- [Let's Get Practical](/getting-practical.md) | ||
|
||
- **Resources** | ||
- [Resources](/resources.md) | ||
- [Open Source Maintainer](intro.md) | ||
- [Setting Up Your Project](how-to-setup-your-project.md) | ||
- [Issues and Pull Requests](issues-and-pull-requests.md) | ||
- [Maintainer Power Ups](maintainer-powerups.md) | ||
- [Setting Up Your Team](your-team.md) | ||
- [Building and Nurturing Community](building-community.md) | ||
- [Effective Communication and Collaboration](communication-and-collaboration.md) | ||
- [Maintaining Code Quality and Documentation](maintaining-code-quality.md) | ||
- [The Power of Metrics and Analytics](metrics-and-analytics.md) | ||
- [Let's Get Practical](getting-practical.md) | ||
- [Maintainers Guestbook](maintainers-guestbook.md) | ||
- [Additional Resources](additional-resources.md) |
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,21 @@ | ||
# Additional Resources | ||
|
||
On this page, you will find additional resources to help you learn more about all things around open source maintainers. | ||
|
||
## Guides | ||
|
||
- [Open Source Guide](https://opensource.guide/) by GitHub: Open Source Guides are a collection of resources for individuals, communities, and companies who want to learn how to run and contribute to an open-source project. | ||
- [Contributor Ladder Template](https://github.com/cncf/project-template/blob/main/CONTRIBUTOR_LADDER.md) by cncf: This is a template for a contributor ladder that outlines the different contributor roles within a project, along with the responsibilities and privileges that come with them. | ||
- [Maintainer Community](https://maintainers.github.com/auth/signin) by GitHub: The Maintainer Community is a private space for maintainers to connect with peers, preview GitHub features, and help GitHub support the open source community. | ||
|
||
## Blog Posts | ||
|
||
- [New Maintainer Resources Series](https://dev.to/bekahhw/series/25520) | ||
- [Maintainer Toolkit Series](https://dev.to/bekahhw/series/24725) by BekahHW | ||
- [Maintainer Toolkit Series](https://dev.to/nickytonline/series/24726) by Nick Taylor | ||
- [Scaling Open Source Projects: Navigating Challenges](https://dev.to/opensauced/navigating-the-challenges-of-scaling-open-source-projects-11h2) | ||
- [Collaborate, Conquer, & Grow: Mastering the Art of Issue Management for Open Source Projects](https://dev.to/opensauced/collaborate-conquer-grow-mastering-the-art-of-issue-management-for-open-source-projects-49gi) | ||
- [The Lonely Journey of Open-Source Maintainers: A Call for Connection and Recognition](https://dev.to/opensauced/the-lonely-journey-of-open-source-maintainers-a-call-for-connection-and-recognition-2ghe) | ||
- [The Role of Documentation in Open Source Success](https://dev.to/opensauced/the-role-of-documentation-in-open-source-success-2lbn) | ||
- [How To Make a Delicious Contributing Guide](https://dev.to/opensauced/how-to-make-a-delicious-contributing-guide-4bp3) | ||
- [What Does an Open Source Triage Team Do?](https://dev.to/opensauced/what-does-an-open-source-triage-team-do-2egd) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,61 +1,61 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Open Sauced</title> | ||
<link rel="icon" href="./assets/pizza-slice.png" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||
<meta name="description" content="Description" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1.0, minimum-scale=1.0" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
href="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/style.min.css" | ||
title="docsify-darklight-theme" | ||
type="text/css" | ||
/> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script> | ||
window.$docsify = { | ||
themeColor: "#1797cf", | ||
name: "Open Sauced", | ||
repo: "open-sauced/maintainer-intro-course", | ||
loadSidebar: "_layouts/sidebar.md", | ||
loadNavbar: "_layouts/navbar.md", | ||
relativePath: true, | ||
subMaxLevel: 3, | ||
search: "auto", | ||
search: { | ||
maxAge: 86400000, | ||
paths: "auto", | ||
placeholder: "Search", | ||
noData: "No Results found!", | ||
depth: 6, | ||
hideOtherSidebarContent: false, | ||
}, | ||
darklightTheme: { | ||
bodyFontSize: "16px", | ||
dark: { | ||
accent: "#d44e70", | ||
}, | ||
light: { | ||
accent: "#4ed4d2", | ||
}, | ||
}, | ||
auto2top: true | ||
}; | ||
</script> | ||
<!-- Docsify v4 --> | ||
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script> | ||
<script src="//cdn.jsdelivr.net/npm/docsify-edit-on-github"></script> | ||
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script> | ||
<script | ||
src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/index.min.js" | ||
type="text/javascript" | ||
></script> | ||
</body> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Open Sauced</title> | ||
<link rel="icon" href="./assets/img/pizza-slice.png" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||
<meta name="description" content="Description" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1.0, minimum-scale=1.0" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
href="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/style.min.css" | ||
title="docsify-darklight-theme" | ||
type="text/css" | ||
/> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script> | ||
window.$docsify = { | ||
themeColor: "#1797cf", | ||
name: "Open Sauced", | ||
repo: "open-sauced/maintainer-intro-course", | ||
loadSidebar: "_layouts/sidebar.md", | ||
loadNavbar: "_layouts/navbar.md", | ||
relativePath: true, | ||
subMaxLevel: 3, | ||
search: "auto", | ||
search: { | ||
maxAge: 86400000, | ||
paths: "auto", | ||
placeholder: "Search", | ||
noData: "No Results found!", | ||
depth: 6, | ||
hideOtherSidebarContent: false, | ||
}, | ||
darklightTheme: { | ||
bodyFontSize: "16px", | ||
dark: { | ||
accent: "#d44e70", | ||
}, | ||
light: { | ||
accent: "#4ed4d2", | ||
}, | ||
}, | ||
auto2top: true, | ||
} | ||
</script> | ||
<!-- Docsify v4 --> | ||
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script> | ||
<script src="//cdn.jsdelivr.net/npm/docsify-edit-on-github"></script> | ||
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script> | ||
<script | ||
src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/index.min.js" | ||
type="text/javascript" | ||
></script> | ||
</body> | ||
</html> |
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,10 @@ | ||
# Maintainers Guestbook | ||
|
||
Congratulations on finishing the Becoming a Maintainer Course with OpenSauced. Welcome to our Maintainers Guestbook, where you can share your first project with us! | ||
|
||
## Projects List | ||
|
||
<!-- Use below format to list your repository --> | ||
<!-- | ||
- [project name](link to your repository) by [GitHub username](link to your GitHub profile) | ||
--> |