Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.52 KB

CONTRIBUTING.md

File metadata and controls

49 lines (33 loc) · 1.52 KB

Contributing to sandbox

We highly appreciate any contribution to sandbox ❤️

A typical workflow

  1. Make sure your fork is up to date with the main repository:
cd sandbox
git remote add upstream https://github.com/ton-community/sandbox.git
git fetch upstream
git pull --rebase upstream main

NOTE: The directory sandbox represents your fork's local copy.

  1. Branch out from main into fix/some-bug-#123 or feat/some-feat for features: Postfixing #123 will associate your PR with the issue #123 and make everyone's life easier
git checkout -b fix/some-bug-#123
  1. Make your changes, add your files, commit, and push to your fork.
git add SomeFile.js
git commit "fix: issue #123"
git push origin fix/some-bug-#123
  1. Make sure tests pass and build succeeds:
yarn build

(build runs tests automatically)

  1. Go to github.com/ton-community/sandbox in your web browser and issue a new pull request.

IMPORTANT Read the PR template very carefully and make sure to follow all the instructions.

  1. Maintainers will review your code and possibly ask for changes before your code is pulled in to the main repository. We'll check that all tests pass, review the coding style, and check for general code correctness. If everything is OK, we'll merge your pull request and your code will be part of sandbox.

All set!

If you have any questions, feel free to join ton-community dev chat at Telegram: https://t.me/ton_dev_community.

Thanks for your time and code!