Continuous Integration With Travis

You must be logged in to edit this page
If you host you kanso project on github, you can have [Travis-CI](https://travis-ci.org/) build and test your couchapp on every commit. Here is how. 1. Follow the [Getting Started](http://about.travis-ci.org/docs/user/getting-started/) steps. 2. Create a .travis.yml file that looks like this ``` language: node_js node_js: - 0.6 env: DB=couchdb before_script: - curl -X PUT localhost:5984/myapp_test - npm install kanso -g script: "kanso install; kanso push http://localhost:5984/myapp_test" ``` You can customize the script to your needs. Examples of running tests suites will be added shortly.