Thank you for contributing to Web monetization tools 🎉 Your contributions are essential to making this project better.
- Have you read the code of conduct?
- Check out the existing issues & see if we accept contributions for your type of issue.
- Types of contributions
- Working in the test network repository
You can contribute to Test Wallet and e-commerce in several ways.
Discussions are where we have conversations about Test network.
If you would like to discuss topics about the broader ecosystem, have a new idea, or want to show off your work - join us in discussions.
Feel free to fork and create a pull request on changes you think you can contribute.
The team will review your pull request as soon as possible.
The project is new and available documentation is a work in progress.
This project uses pnpm
. A list of steps for setting up a local development environment can be found in the Readme.
Warning DO NOT use
npm install
. This will cause the project to spontaneously self-destruct 💥.
We use labels to communicate the intention of issues and PRs.
package: wallet/*
prefix denotes issues that are partaining the wallet application (frontend and backend);priority:
prefix denotes pirority of issues.type:
prefix denotes the type of issues/PRs, ex. type:story represents a bigger issue with subtasks.
Some labels will be automatically assigned to issues/PRs.
All the code quality tools used in the project are installed and configured at the root. This allows for consistency across the monorepo. Allows new packages to be added with minimal configuration overhead.
We try not to put config files in workspaces, unless absolutely necessary.
Eslint is used for linting.
./.eslintrc.js # config
./.eslintignore # ignore file
Eslint config should not be overridden in any packages.
Prettier is used for formatting.
./.prettierrc.js # config
./.prettierignore # ignore file
Prettier config should not be overridden in any packages.
Jest is used for unit and integration testing.
Typescript is the chosen language.
./tsconfig.base.json # config
Typescript config at the root is intended to be a base config that should be extended by each package to suit the package's requirements.
We use GitHub actions to manage our CI pipeline.
The workflows can be found in .github/workflows
If you encounter any issues or have a feature request, please create a new issue and provide the following details:
- A clear and descriptive title.
- A detailed description of the issue, including steps to reproduce if applicable.
- Information about your environment (e.g., operating system, browser, version).
- Any relevant screenshots or error messages.
- Fork the repository.
- Create a new branch from
main
. - Make your changes and commit them.
- Create a pull request (PR) to
main
. - Ensure your PR includes a clear title and description following the Conventional Commits Specification.
- If your PR addresses an issue, reference the issue in the description using
Closes #123
. - Be patient and be prepared to address feedback and make changes if needed.
- Project maintainers will review your PR for code quality, correctness, and adherence to guidelines.
- Please respond to any feedback promptly and make necessary changes.
- Once the PR is approved, it will be merged into the main branch.
Happy coding!