Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disregard #2 #37

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
.env
node_modules
notes
apidoc
.coveralls.yml
.nyc_output
coverage
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
language: node_jsgit

rvm:
-8.0.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ShareCast
ShareCast, a social way to share podcasts between friends, stimulating conversation on topics you care about. Track podcasts, share episodes and (later) get notifications on when your friends have listened to podcasts you’ve shared so that you can have a deeper discussion and build intellectual bridges with your friends and family.
ShareCast, a social way to share podcasts between friends, stimulating conversation on topics you care about. Track podcasts, share episodes and (in a future release) get push notifications on when your friends have listened to podcasts you’ve shared so that you can have a deeper discussion and build intellectual bridges with your friends and family.

Changing lives, one podcast at a time.

Expand Down
98 changes: 98 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"scripts": {
"knex": "knex",
"test": "mocha",
"testnyc": "nyc mocha"
"testnyc": "nyc mocha",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -43,8 +44,10 @@
},
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.11.0",
"nyc": "^11.0.3",
"supertest": "^1.2.0"
Expand Down