Contributions are always welcome, no matter how large or small.
Some thoughts to help you contribute to this project
- Always leave screenshots for visuals changes
- Always leave a detailed description in the Pull Request. Leave nothing ambiguous for the reviewer.
- Always review your code first. Do this by leaving comments in your coding noting questions, or interesting things for the reviewer.
- Always communicate. Whether it is in the issue or the pull request, keeping the lines of communication helps everyone around you.
First of all, understand the basics of setting up a fork.
Then, clone the repo using the docs over at cloning a repository.
Most of our repositories will use one of Node.js, Python, or Go for development. Please ensure you have the correct version of the language installed.
Each programming language will have a package manager, we will be generally using the one that is most supported and deterministic. Here's an example using npm for package management:
# use either of ssh or gh cli to clone the repo
git clone git@github.com:<your name>/next.tmcb.space.git
gh repo clone TMCB-SPACE/next.tmcb.space
# change directory into the repo and install dependencies the deterministic way
cd next.tmcb.space
npm ci
# start the local development server
npm run dev
For running the test suite, use the following command. Since the tests run in watch mode by default, some users may encounter errors about too many files being open. In this case, it may be beneficial to install watchman.
# the tests will run in watch mode by default
npm test
# optionally, you can lint and format most projects
npm run lint
npm run format
We actively welcome your pull requests, however linking your work to an existing issue is preferred.
- Fork the repo and create your branch from
beta
or DEFAULT branch if different. - Name your branch something that is descriptive to the work you are doing. i.e.
feat-adds-new-thing
orfix-mobile-scroll
. - If you've added code that should be tested, add tests.
- If you've changed APIs, update the documentation.
- If you make visual changes, screenshots are welcome.
- Ensure the test suite passes.
- Make sure you address any lint warnings.
- If you make the existing code better, please let us know in your PR description.
- A PR description and title are required. The title is required to begin with: "feat:" or "fix:"
- Link to an issue in the project. Unsolicited code is welcomed, but an issue is required for announce your intentions. PR's without a linked issue will be marked invalid and closed.
Examples for valid PR titles:
fix: Correct typo
feat: Add support for Node 21
refactor!: Drop support for Node 6
Note that since PR titles only have a single line, you have to use the ! syntax for breaking changes.
See Conventional Commits for more examples.
GitHub has support for draft pull requests, which will disable the merge button until the PR is marked as ready for merge.
If you plan to contribute a change based on an open issue, please assign yourself by commenting on the following word .take
. Issues that are not assigned are assumed open, and to avoid conflicts, please assign yourself before beginning work on any issues.
@TMCB-SPACE is looking into funding options, currently tackling GitHub Sponsors and Patreon, but we are open to other options. If you have any suggestions, please let us know.
By contributing to the @TMCB-SPACE projects, you agree that your contributions will be licensed under its MIT license.