diff --git a/.travis.yml b/.travis.yml index 77364c4..3974100 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,5 @@ bundler_args: --retry 3 language: node_js -services: - - mongodb before_install: - export TZ=America/Chicago - npm install -g grunt-cli diff --git a/Gruntfile.js b/Gruntfile.js index 7b0f6dc..c038c51 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -8,7 +8,7 @@ module.exports = function( grunt ) { pkg: grunt.file.readJSON( "package.json" ), jshint: { - main: [ "Gruntfile.js", "server.js", "routes/*.js", "models/*.js" ], + main: [ "Gruntfile.js", "server.js", "routes/*.js" ], options: { jshintrc: true } diff --git a/README.md b/README.md index 3ed5abe..d4a7a1d 100644 --- a/README.md +++ b/README.md @@ -17,5 +17,3 @@ The production version runs on Amazon Elastic Beanstalk (AWS EB) and therefore t **server.js** is the primary file launching the API daemon. **routes/*.js** contains all the endpoints for the API service. Currently, only one exists for weather adjustment. - -**models/*.js** contains all the database models used by the routes. Currently, only one exists to manage weather cache data.