Want to contribute to Ethereal Nexus?
Ask support from our core team! Feel free to reach us directly.
To better understand the scope of this project we advise everyone that wants to contribute to read our Documentation!
- We follow trunk based development.
- The trunk branch is
main
- Developments should be done via a new feature branch, and then a PR should be raised against
main
. - All merged branches will be deployed into the development environment and later released.
To develop locally:
- Clone the repository.
- Create a new branch:
git checkout -b feature/MY_BRANCH_NAME origin/main
- Enable pnpm:
corepack enable pnpm
- Install the dependencies with:
pnpm install
- Start developing and watch for code changes on the desired package:
pnpm dev
- When your changes are finished, commit them to the branch and open a PR.