Welcome to our community! Thank you for taking the time to read the following.
- All code should have tests.
- All code should be documented.
- No changes are ever committed without review and approval.
We follow the policy set by the LLVM project:
https://llvm.org/docs/AIToolPolicy.html
The core principle is that a human must be in the loop at all time and contributors are solely responsible for their contributions.
Current BDFL: Pamphile Tupui Roy @tupui
- radicle is primarily used. github only serves as a mirror.
- For a patch to be integrated, it must be approved at least by one core team member.
- Development discussions happen on Discord but any request must be formalized in radicle (if really necessary on github). This ensures a common history.
- When making a PR on github, Continuous Integration is provided by Github actions and configuration is located at
.github/workflows. - Netlify is also providing some CI and is useful for all dApp related changes.
After cloning the repository, see the various Makefiles.
For IPFS uploads via Filebase, see the guide at dapp/workers/ipfs-delegation/README.md for setup instructions.
You only need to configure this if you're working on the IPFS delegation worker itself.
Testing your code is paramount. Without continuous integration, we cannot
guaranty the quality of the code. Some minor modification on a function can
have unexpected implications. With a single commit, everything can go south!
The main branch is always on a passing state: CI is green, working code,
and an installable Python package.
Tests will be automatically launched when you will push your branch to GitHub. Be mindful of this resource!
Apart from normal unit and integration tests, you can perform a static analysis of the code using black and ruff for Python, prettier for JS/MD/MDX and standard Rust formatters.
This allows to spot naming errors for example as well as other style errors.
The development model is based on the Cactus Model also called Trunk Based Development model. More specifically, we use the Scaled Trunk-Based Development model.
Some additional ressources: gitflow, gitflow critique, Radicle Patch GitHub PR.
It means that each new feature has to go through a new branch. Why? For peer review. Pushing directly on the develop without review should be exceptional (hotfix)!
This project is using pre-commit hooks. So you have to set it up like this:
pre-commit install
pre-commit run --all-filesWhen you try to commit your changes, it will launch the pre-commit hooks
(.pre-commit-config.yaml)
and modify the files if there are any changes to be made for the commit to be
accepted. If you don't use this feature and your changes are not compliant
(linter), CI will fail.
If you want to add a modification, create a new branch branching off main.
Then you can create a patch on radicle or if you want to make me sad,
a merge request on github. From here, the fun begins.
For every commit you push, the linter and tests are launched.
Your request will only be considered for integration if in a finished state:
- Respect Python/JS/Rust coding rules,
- Have tests regarding the changes,
- The branch passes all tests (current and new ones),
- Maintain test coverage,
- Have the respective documentation.
Commit messages should be clear and follow a few basic rules. Example:
Add functionality X.
Lines shouldn't be longer than 72
characters. If the commit is related to a ticket, you can indicate that
with "See #3456", "See ticket 3456", "Closes #3456", or similar.Describing the motivation for a change, the nature of a bug for bug fixes or
some details on what an enhancement does are also good to include in a commit
message. Messages should be understandable without looking at the code
changes. A commit message like fixed another one is an example of
what not to do; the reader has to go look for context elsewhere.
Squash-merge is systematically used to maintain a linear history. It's important to check the message on the squash commit.
This section is the canonical reference for deployments. Keep deployment steps up to date here first.
- Update the version in the main
pyproject.toml. - Build locally using
hatch build, and verify the content of the artifacts. - Submit a PR, wait for tests to pass, and merge into
main. - Trigger the release workflow manually.
- Check that the release has been deployed to PyPI.
The dApp can be deployed to two Netlify projects:
- Staging:
https://testnet.tansu.dev(b637f4df-4886-4cc7-bc3b-6bfa12e6f351) - Production:
https://app.tansu.dev(12f7130e-323b-42d5-b2cb-69df80676a79)
Automatic Netlify branch deploy sources:
- Staging (
testnet.tansu.dev): branchmain. - Production (
app.tansu.dev): branchapp_prod.
Locally we can test using the Netlify CLI:
- Link the local
dapp/folder to the target Netlify project:- Staging:
bun run netlify:link:staging - Production:
bun run netlify:link:production
- Staging:
- Verify the active target:
bun run netlify:status - Deploy:
bun run netlify:deploy
Netlify UI settings required for cloud builds (both projects):
- Base directory:
dapp - Build command:
bun run build - Publish directory:
dist - Configuration file path:
netlify.toml(repo root)
Once on Netlify on production, the dApp can be deployed on IPFS:
- Trigger the dApp IPFS deployment workflow.
- Update the CID on the Tansu linked address. See https://xlm.sh/
Contract artifacts are published by GitHub Actions on tag push:
- Ensure code is merged and stable on
main. - Create and push a tag matching
v*(for examplev1.2.3). - Confirm
.github/workflows/contract-release.ymlcompletes and publishes the release artifact.
Then execute on-chain upgrade flow (see Makefile targets for exact commands):
- Build/upload the new WASM.
- Propose upgrade (
make contract_propose_upgrade network=<network>). - Approve upgrade (
make contract_approve_upgrade network=<network>). - Finalize upgrade (
make contract_finalize_upgrade network=<network>).
The website is built with Docusaurus. Validate before deployment:
cd websitebun install --frozen-lockfilebun run build
Deployment is managed on Netlify. After publishing, verify the expected site and environment in the Netlify UI.
For worker setup and deployment instructions, use the existing guide at
dapp/workers/ipfs-delegation/README.md.