Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
2d4007a
chore(Test Events and Centers Routes with Mocha & chai)
codinger41 Nov 23, 2017
fcea96b
add travis.yml file
codinger41 Nov 23, 2017
1fa73dc
add chai-http to dependencies in package.json
codinger41 Nov 23, 2017
8c1c7da
add travis CI badge to readme file
codinger41 Nov 23, 2017
037e950
Fix(Add exit to test script)
codinger41 Nov 23, 2017
859254b
create .coveralls.yml file && add coveralls badge to readme file
codinger41 Nov 23, 2017
e39be6a
Fix(add status codes to responses on centerController.js)
codinger41 Nov 23, 2017
db4510c
Update .travis.yml for coverage to work
codinger41 Nov 23, 2017
d516ba3
update mocha version
codinger41 Nov 23, 2017
cd1658b
ft(Add validation code to handle tricky inputs)
codinger41 Nov 23, 2017
a82b492
Add validator status codes for bad inputs
codinger41 Nov 23, 2017
06e1009
fix center controller validator to take facilities as an array
codinger41 Nov 23, 2017
b1ffaf6
add .hound.yml file with eslint config in it
codinger41 Nov 23, 2017
0b773b3
Add whiteboard api blueprint
codinger41 Nov 23, 2017
41186bf
Add coveralls script
codinger41 Nov 24, 2017
02ce27b
Remove validator package since it is not in use
codinger41 Nov 24, 2017
82f5177
Remove Whiteboard API docs, swagger or slate is required
codinger41 Nov 24, 2017
57f260d
Add codeclimate && coverage badge to readme.md
codinger41 Nov 24, 2017
f64f89c
Add configurations for heroku deployment
codinger41 Nov 24, 2017
f09efbc
Fix package.json run build script for heroku
codinger41 Nov 24, 2017
cd8eb53
Fix UI bugs in template directory and Finalize API endpoints
codinger41 Nov 24, 2017
0bf16d9
Refactor code to work on heroku
codinger41 Nov 24, 2017
c4d5421
Add missing babel dependency to package.json
codinger41 Nov 24, 2017
ae1b17b
Specify node version for heroku deployment
codinger41 Nov 24, 2017
a087c8a
Ignore Coverage directory
codinger41 Nov 24, 2017
df2fa30
Ignore coverage directory
codinger41 Nov 24, 2017
78c4d1c
Ignore coverage directory
codinger41 Nov 24, 2017
402bba0
Clean Codebase
codinger41 Nov 24, 2017
d2db332
Fix footer content in all pages
codinger41 Nov 24, 2017
fd4c624
Remove line breaks after nav bar
codinger41 Nov 24, 2017
d4f2294
Add babel watch to list of dependencies
codinger41 Nov 24, 2017
48da8cd
Fix input validator issue
codinger41 Nov 25, 2017
31aff1b
Add after_success script to .travis.yml
codinger41 Nov 26, 2017
cdbc4e3
Change coveralls token
codinger41 Nov 26, 2017
fc327dd
Add coveralls badge to README.md
codinger41 Nov 26, 2017
80dadf1
Setup sequelize && Postgresql with an online host elephantsql
codinger41 Nov 30, 2017
af822f3
Setup Events & Centers Model with sequelize
codinger41 Nov 30, 2017
cb53406
Setup Model for Events
codinger41 Nov 30, 2017
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
File renamed without changes.
2 changes: 2 additions & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
service_name: travis-ci
repo_token: LUxFLgqkxkfQ3Qq53Xz0u1wZ7PXYs8NHP
File renamed without changes.
9 changes: 9 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#### What does this PR do?

#### Description of Task to be completed?

#### How should this be manually tested?

#### Any background context you want to provide?

#### What are the relevant pivotal tracker stories? (if applicable)
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
template/.vscode
server/.vscode
server/.vscode
.vscode
node_modules
package-lock.json
.nyc_output
server/dist
coverage
server/dist
3 changes: 3 additions & 0 deletions .hound.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
eslint:
enabled: true
config_file: .eslintrc
8 changes: 8 additions & 0 deletions .sequelizerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const path = require('path')

module.exports = {
"config": path.resolve('./server/config', 'config.json'),
"models-path": path.resolve('./server/models'),
"seeders-path": path.resolve('./server/seeders'),
"migrations-path": path.resolve('./server/migrations')
};
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
language: node_js

node_js:
- stable

install:
- npm install

script:
- npm test
after_success:
- npm run coveralls

after_script: NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

[![Build Status](https://travis-ci.org/leksyib/EventsManager.svg?branch=ft-api-test-mocha)](https://travis-ci.org/leksyib/EventsManager)
[![Coverage Status](https://coveralls.io/repos/github/leksyib/EventsManager/badge.svg?branch=Final-UI-and-API-endpoint-changes)](https://coveralls.io/github/leksyib/EventsManager?branch=Final-UI-and-API-endpoint-changes)
[![Test Coverage](https://api.codeclimate.com/v1/badges/91a04d9e02993baac251/test_coverage)](https://codeclimate.com/github/leksyib/EventsManager/test_coverage)
[![Maintainability](https://api.codeclimate.com/v1/badges/91a04d9e02993baac251/maintainability)](https://codeclimate.com/github/leksyib/EventsManager/maintainability)
# EVENTSMANAGER
EventsManager is a FullStack JavaSript Web App built for Management and organisation of events and event centers.

Expand All @@ -16,7 +19,7 @@ Npm install
```
Run to start server:
```
npm starts
npm start
```
Possible API routes
<ol>
Expand Down
Loading