Browse Source

Initial commit

James Peret 2 years ago
commit
513a908ec0
3 changed files with 27 additions and 0 deletions
  1. 2 0
      .gitignore
  2. 11 0
      package.json
  3. 14 0
      readme.md

+ 2 - 0
.gitignore

@@ -0,0 +1,2 @@
+.DS_Store
+*/.DS_Store

+ 11 - 0
package.json

@@ -0,0 +1,11 @@
+{
+  "name": "customer-feedback-service",
+  "version": "0.1.0",
+  "description": "API for receiving contact messages, feedback and bug reports",
+  "main": "index.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "author": "James Peret <james.peret@gmail.com> (http://jamesperet.com)",
+  "license": "ISC"
+}

+ 14 - 0
readme.md

@@ -0,0 +1,14 @@
+# Customer Feedback Service
+
+The **customr-feedback-service** is an API that receives *report* messages and saves them into a database. A *report* might be a *message*, *feedback* or *bug report*.
+
+```
+fields:
+- Email
+- Topic
+- Message
+- Product (for feedback and bug reports)
+- Metadata
+```
+
+