Skip to content

Commit

Permalink
feature/implement-modify-center
Browse files Browse the repository at this point in the history
- write controller for editing center
- write tests for editing center feature
- integrate travis
- integrate coveralls
  • Loading branch information
Billmike committed Apr 11, 2018
1 parent 396e90d commit 892ba7e
Show file tree
Hide file tree
Showing 12 changed files with 2,935 additions and 6 deletions.
33 changes: 33 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
engines:
duplications:
enabled: false
config:
languages:
- javascript
eslint:
enabled: true
checks:
comma-dangle:
enabled: false
linebreak-style:
enabled: false
import/extensions:
enabled: false
fixme:
enabled: true
ratings:
paths:
- "server/**/*.js"
languages:
JavaScript: true
exclude_paths:
- "node_modules/"
- "client/"
- "templates/*"
- "server/routes/"
- "server/tests"
- "server/seeders"
- "server/migrations"
- "server/models"
- "server/api-doc"
- "public/"
Empty file added .coveralls.yml
Empty file.
1 change: 1 addition & 0 deletions .nyc_output/5427c5f195a162efdb75f0e5a1681d11.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .nyc_output/af75192029bbe6bd399efc50d3f02160.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
language: node_js
node_js:
- "8.9.1"
services:
- postgresql
before_script:
- psql -c 'create database event_center_test;' -U postgres
install:
- npm install sequelize
- npm install cross-env
- npm install sequelize-cli
- npm install pg
- npm install pg-hstore
- npm install nyc
script:
- npm run test

after_success:
- npm run coverage
Loading

0 comments on commit 892ba7e

Please sign in to comment.