-
Notifications
You must be signed in to change notification settings - Fork 2
How to contribute
Fork project into your repositories.
Checkout a new branch from the develop branch with a descriptive name:
$ git checkout -b new_approve_function
Write all your code and write tests when appropriate.
Make the test command passes with no warnings:
$ npm run test
$ git add -A
$ git commit -m "my changes info"
$ git checkout develop
$ git merge new_approve_function
$ git push
Open a PR into the develop branch.
Travis will build the project and push the new image:develop to Docker. If everything is working properly then we can merge to master.
Branching off develop into new branch, delete the following files:
.dockerignore
Dockerfile
.travis.yml
README.md
Update version in package.json
and ethpm.json
Merge with master and publish new package:
$ truffle publish
Eventually .travis.yml
will do this in master, when the network bug in truffle publish
is fixed.
In https://github.com/NFhbar/Docker-SingleTxMultisig update ENV SINGLE_TX_VERSION
and push.