Skip to content

Latest commit

 

History

History
79 lines (59 loc) · 1.25 KB

CONTRIBUTING.md

File metadata and controls

79 lines (59 loc) · 1.25 KB

Contribution Guide

Insert a new content

1 - Install the nodejs.

2 - Install the grunt-cli

$ npm install -g grunt-cli

3 - Fork it!

4 - Clone

5 - Install all dependencies.

$ npm install

6 - Edit the checklist.json file and add the new content.

7 - Run the grunt task for build the static pages:

$ grunt build

8 - Create your feature branch:

$ git checkout -b my-new-tasks

9 - Commit your changes:

$ git commit -a -m 'Add some task'

10 - Push to the branch:

$ git push origin my-new-task

11 - Submit a pull request :)

Adding a new feature

1 - Install the nodejs.

2 - Install the grunt-cli.

	$ npm install -g grunt-cli

3 - Fork it!

4 - Clone

5 - Install all dependencies.

	$ npm install

6 - Edit the dev/ folder content.

7 - Run the grunt task for build the static pages:

$ grunt build

8 - Create your feature branch:

$ git checkout -b my-new-feature

9 - Commit your changes:

$ git commit -a -m 'Add some feature'

10 - Push to the branch:

$ git push origin my-new-feature

11 - Submit a pull request :)