From d2f3aaf7ce002a7e44b539a261f5d9beb3ac72d1 Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Tue, 28 Jul 2015 08:08:03 -0700 Subject: Initial commit. --- .gitignore | 2 ++ LICENSE.txt | 13 +++++++++++++ README.md | 8 ++++++++ package.json | 16 ++++++++++++++++ 4 files changed, 39 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE.txt create mode 100644 README.md create mode 100644 package.json 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 + +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" + } +} -- cgit v1.2.3