-
-
Notifications
You must be signed in to change notification settings - Fork 3
organization documentation #45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
alexanderniebuhr
wants to merge
21
commits into
main
Choose a base branch
from
add-documentation
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 17 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
9c04a05
wip
alexanderniebuhr 66baf53
wip
alexanderniebuhr 068731c
wip
alexanderniebuhr 55e4232
Merge branch 'main' into add-documentation
alexanderniebuhr 9145b9e
Add astorlicious thought piece
alexanderniebuhr 6d169d7
Merge branch 'add-documentation' of https://github.com/astrolicious/d…
alexanderniebuhr 2463665
Update thought piece
alexanderniebuhr fb3826b
Fixed docs
alexanderniebuhr 66c7fd7
wip
alexanderniebuhr 3d7c317
include blog pieces
alexanderniebuhr 7367db9
wip
alexanderniebuhr d7a1129
Merge branch 'main' into add-documentation
alexanderniebuhr d1595e3
add friends
alexanderniebuhr 959f257
fixes
alexanderniebuhr 450c5c4
trace logs
alexanderniebuhr 1d06b50
workaround
alexanderniebuhr 506b6d0
workaround
alexanderniebuhr 317976c
Update apps/site/src/content/docs/docs/index.mdx
alexanderniebuhr 690cd2d
Implements mock up discussed in #45 (#96)
gingerchew d47d8e4
Update apps/site/src/components/FriendsCard.astro
alexanderniebuhr 5d39714
chore: rename file
alexanderniebuhr File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 +1 @@ | ||
| 20.15.1 | ||
| 20.16.0 |
This file contains hidden or 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,9 +1,11 @@ | ||
| # renovate: datasource=github-tags depName=moonrepo/moon | ||
| moon = "1.26.7" | ||
| moon = "1.27.5" | ||
| # renovate: datasource=node-version depName=node versioning=node | ||
| node = "20.15.1" | ||
| node = "20.16.0" | ||
| # renovate: datasource=npm depName=pnpm | ||
| pnpm = "9.4.0" | ||
| pnpm = "9.6.0" | ||
| # renovate: datasource=npm depName=npm | ||
| npm = "10.8.2" | ||
|
|
||
| [plugins] | ||
| moon = "source:https://raw.githubusercontent.com/moonrepo/moon/master/proto-plugin.toml" |
This file contains hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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
Binary file not shown.
Binary file not shown.
This file contains hidden or 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,32 @@ | ||
| --- | ||
| import type { CollectionEntry } from 'astro:content'; | ||
|
|
||
| interface Props { | ||
| friend: CollectionEntry<'friends'>; | ||
| class?: string; | ||
| } | ||
|
|
||
| const { friend, class: className } = Astro.props; | ||
| const { name, logo, url, slogan } = friend.data; | ||
| --- | ||
|
|
||
| <div | ||
| class:list={[ | ||
| "bg-white p-4 rounded-2xl border border-gray-200 shadow-sm", | ||
| className, | ||
| ]} | ||
| > | ||
| <a href={url}> | ||
| <div class="flex justify-center items-center"> | ||
| <img class="w-12" src={logo} alt={name + "logo"} /> | ||
| </div> | ||
| <h2 | ||
| class="font-extrabold uppercase text-2xl text-primary-950 max-w-2xl font-heading" | ||
| > | ||
| {name} | ||
| </h2> | ||
| <div class="mt-2 text-gray-700"> | ||
| {slogan ?? ""} | ||
| </div> | ||
| </a> | ||
| </div> |
This file contains hidden or 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
|
alexanderniebuhr marked this conversation as resolved.
|
This file contains hidden or 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,3 @@ | ||
| --- | ||
| title: Brand Guidelines | ||
| --- |
This file contains hidden or 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,69 @@ | ||
| --- | ||
| title: Governance | ||
| --- | ||
|
|
||
| This document outlines the governance structure for _**Astrolicious**_. | ||
|
|
||
| **All community members must follow the [Code of Conduct (CoC)](https://github.com/astrolicious/.github/blob/main/.github/CODE_OF_CONDUCT.md).** | ||
| Consequences for CoC violations are detailed in [Moderation](#moderation). | ||
|
|
||
| **Want to trigger a vote, nomiation, or perform some other action?** | ||
| Scroll down to [Playbook](#playbook). | ||
|
|
||
| ## Mission | ||
|
|
||
| _**Astrolicious**_ is an independent community organization, unaffiliated with the official Astro project or its maintainers. Our mission is to harness the collective power and creativity of our community to build and maintain a suite of resources, tools, and extensions that complement and enhance the wider ecosystem surrounding Astro. By bringing together community-driven contributions, we aim to facilitate a collaborative environment where individuals can contribute, learn, and benefit from a larger pool of shared knowledge and tools. Our goal is to foster innovation, support the growth of all contributors, and create a robust foundation that enables our community to thrive alongside the evolving landscape of web development. We are committed to inclusivity, open collaboration, and the shared success of our members, independent of, yet respectful to, the Astro project and its goals. | ||
|
|
||
| ## Roles | ||
|
|
||
| We recognize different levels of contribution as roles within the community. Each level comes with a new set of privileges and responsibilities. | ||
|
|
||
| All roles are available to all members of the Astrolicious community, regardless of coding skill or experience. | ||
|
|
||
| ### Contributor | ||
|
|
||
| Have you done something (big or small) to contribute to the health, success, or growth of Astrolicious? Congratulations, you're officially recognized as a contributor to the project! | ||
|
|
||
| ### Triage | ||
|
|
||
| Triage roles | ||
|
|
||
| ### Maintainer | ||
|
|
||
| ## Special Roles | ||
|
|
||
| ### Enthusiasts | ||
|
|
||
| Engaged members passionate about the project, acting as community ambassadors without participating in decision-making. They represent the community externally. Enthusiast' responsibilities are not funded, though they may receive funding for other roles. | ||
|
|
||
| ### Masterminds | ||
|
|
||
| Known also as the "Board" or "Technical Steering Committee," they are the decision-making core, ensuring the project's and community's health. Masterminds oversee organizational decisions, affecting integrated projects but not standalone ones due to their independent nature. Mastermind' responsibilities are not funded, though they may receive funding for other roles. | ||
|
|
||
| ### Stewards | ||
|
|
||
| The pinnacle role overseeing the project's overall well-being, inclusivity, and sustainability. They prevent the project from being dominated by single entities. Stewards' responsibilities are not funded, though they may receive funding for other roles. | ||
|
|
||
| ## Standalone Project' Roles | ||
| Project maintainers with autonomy to maintain projects in line with established decisions and directions. They are eligible for optional funding based on time, activity commitments and fund availability. | ||
|
|
||
| ## Retiring a Role (Alumni) | ||
|
|
||
| Roles are granted for as long as the person wishes to engage with the project. However, over time an active community member may choose to step away from the project to work on other things. Moving on from a project is a natural and well-understood part of any open source community, and we celebrate it! | ||
|
|
||
| **Alumni** is a special designation and role for any person who had once an role assigned but is now no longer actively involved. By retiring and joining Alumni you trade-in your current set of roles, privileges, and responsibilities for a new, special Alumni role (which comes with its own set of Privileges, as described above). | ||
|
|
||
| You can retire your role at any time and requesting Alumni status. You can initiate this action yourself if you know ahead-of-time that you need to step away from the project. Or, if you have gone several months without interacting with the community, the project may actively reach out to you to discuss retiring as a way to make room for new members. | ||
|
|
||
| As an Alumni member, you are still a part of the community. You may also request to have your old roles reinstated at any time through the normal process for that role. | ||
|
|
||
| ## Moderation | ||
|
|
||
| ## Our Playbook | ||
| Anything that supports the Astrolicious or Astro community is a valubale contribution. | ||
|
|
||
| All types of contribution are meaningful. This can include code, Design, Documentation, Discord activity, and even posting about Astrolicious. No contribution is too small! | ||
|
|
||
| Anyone can become an Astrolicious contributor (yes, even you!). Engineering ability is not required. Our goal is to recognize all contributeors to the project regardless of skill, experience, or background. | ||
|
|
||
| _Our governance document is inspired by [Astro](https://github.com/withastro/.github/blob/main/GOVERNANCE.md)._ |
5 changes: 5 additions & 0 deletions
5
apps/site/src/content/docs/docs/guidebook/community-content.mdx
This file contains hidden or 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,5 @@ | ||
| --- | ||
| title: Community Content | ||
| --- | ||
|
|
||
| add a new json file to astro tips community content collection, which will be automaticly pushed to astro docs, to be visible in the community section of the astro docs. |
This file contains hidden or 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,6 @@ | ||
| --- | ||
| title: Cross-Posting | ||
| --- | ||
|
|
||
|
|
||
| people can cross-post their content to astrolicious blog or astro tips community section, as long as they reference their own blog adress here and backlink fromt their blog us. |
This file contains hidden or 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,9 @@ | ||
| --- | ||
| title: Astro Tips Recipes | ||
| --- | ||
|
|
||
| have explanation about recipe and how to create one | ||
|
|
||
| inspo: | ||
| https://contribute.docs.astro.build/guides/recipe-writing/ | ||
| https://contribute.docs.astro.build/guides/new-third-party-stub/ |
This file contains hidden or 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,5 @@ | ||
| --- | ||
| title: Astro Tips Tips | ||
| --- | ||
|
|
||
| snippets, very short tutorials, etc. |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.