diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | LICENSE.txt | 13 | ||||
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | package.json | 16 |
4 files changed, 39 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8ace519 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +v8.log +node_modules diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..1bab582 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,13 @@ +Copyright (c) 2015, Jesse Morgan <jesse@jesterpm.net> + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..0bc73cb --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +Podcast Service +=============== + +Podcast Service provides a restful interface for managing a set of podcasts. The +system is targeted towards podcasting church services. The system pre-renders +the web pages and podcast XML files when podcasts are added/modified/removed, +rather than rendering them dynamically on each page load. + diff --git a/package.json b/package.json new file mode 100644 index 0000000..c0ec870 --- /dev/null +++ b/package.json @@ -0,0 +1,16 @@ +{ + "name": "podcast-service", + "version": "0.0.0", + "description": "Podcast Service provides a restful interface for managing a set of podcasts.", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "", + "license": "ISC", + "dependencies": { + "aws-sdk": "^2.1.40", + "dynamodb-doc": "^1.0.0", + "underscore": "^1.8.3" + } +} |