Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ You can use the key and secret values in this way:

~$ sudo TRELLO_KEY=key TRELLO_SECRET=secret node app.js

Otherwise you can define TRELLO_KEY and TRELLO_SECRET as environment variables of your operating system.

Installation Requirements
=========================

Expand All @@ -27,3 +29,16 @@ Scrello uses several dependencies which are listed in the `package.json` file so
Now you can run your Scrello installation just typing:

~$ node app.js

How To Run Tests
=========================

In order to run tests, you need to have installed *grunt* and *grunt-cli*

To run tests you have to execute:

~$ sudo TRELLO_KEY=key TRELLO_SECRET=secret grunt mochaTest

or if you set them as environment variables

~$ grunt mochaTest
16 changes: 11 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,25 @@
},
"dependencies": {
"express": "3.4.6",
"grunt": "~0.4.4",
"jade": "*",
"mongodb": "~1.3.19",
"winston": "~0.7.3",
"grunt": "~0.4.4"
"mongoose": "^3.8.13",
"node-trello": "^0.1.5",
"passport": "^0.2.0",
"passport-trello": "^0.1.4",
"winston": "~0.7.3"
},
"devDependencies": {
"chai": "^1.9.1",
"grunt-contrib-watch": "~0.6.1",
"grunt-mocha-test": "~0.10.2",
"karma": "~0.12.1",
"karma-chrome-launcher": "~0.1.2",
"karma-firefox-launcher": "~0.1.3",
"karma-jasmine": "~0.1.5",
"karma-junit-reporter": "~0.2.1",
"supertest": "^0.11.0",
"grunt-mocha-test": "~0.10.2",
"grunt-contrib-watch": "~0.6.1"
"mockgoose": "^1.10.2",
"supertest": "^0.11.0"
}
}