More cleanup

This commit is contained in:
Samer Albahra
2018-07-22 19:33:57 -05:00
parent fc8b777328
commit f5c1e65b71
3 changed files with 1 additions and 5 deletions

View File

@@ -1,7 +1,5 @@
bundler_args: --retry 3 bundler_args: --retry 3
language: node_js language: node_js
services:
- mongodb
before_install: before_install:
- export TZ=America/Chicago - export TZ=America/Chicago
- npm install -g grunt-cli - npm install -g grunt-cli

View File

@@ -8,7 +8,7 @@ module.exports = function( grunt ) {
pkg: grunt.file.readJSON( "package.json" ), pkg: grunt.file.readJSON( "package.json" ),
jshint: { jshint: {
main: [ "Gruntfile.js", "server.js", "routes/*.js", "models/*.js" ], main: [ "Gruntfile.js", "server.js", "routes/*.js" ],
options: { options: {
jshintrc: true jshintrc: true
} }

View File

@@ -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. **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. **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.