Просмотр исходного кода

Merge pull request #3 from nypublicradio/master

Jason Cox 6 лет назад
Родитель
Сommit
e6cafceecb
No account linked to committer's email
4 измененных файлов с 6 добавлено и 6 удалено
  1. 4 0
      INSTALL.md
  2. 0 4
      README.md
  3. 1 1
      package.json
  4. 1 1
      server/index.js

+ 4 - 0
INSTALL.md Просмотреть файл

@@ -133,6 +133,10 @@ Now you can run Audiogram in a container using that image:
133 133
 docker run -p 8888:8888 -t -i audiogram
134 134
 ```
135 135
 
136
+## AWS installation
137
+
138
+If you're trying to run Audiogram on AWS services like Lambda or Elastic Beanstalk that rely on the Amazon Linux distribution, you will probably need to follow the [node-canvas Amazon Linux AMI instructions](https://github.com/Automattic/node-canvas/wiki/Installation---Amazon-Linux-AMI-(EC2)) to install the dependencies and/or package up the resulting binaries.
139
+
136 140
 ## Mac troubleshooting
137 141
 
138 142
 If things aren't working on a Mac, there are a few fixes you can try.

Разница между файлами не показана из-за своего большого размера
+ 0 - 4
README.md


+ 1 - 1
package.json Просмотреть файл

@@ -35,11 +35,11 @@
35 35
     "morgan": "^1.7.0",
36 36
     "multer": "^1.1.0",
37 37
     "node-ffprobe": "^1.2.2",
38
-    "node-uuid": "^1.4.7",
39 38
     "redis": "^2.4.2",
40 39
     "rimraf": "^2.5.0",
41 40
     "smartquotes": "^1.0.0",
42 41
     "underscore": "^1.8.3",
42
+    "uuid": "^3.0.1",
43 43
     "webaudio-peaks": "0.0.5",
44 44
     "winston": "^2.2.0"
45 45
   },

+ 1 - 1
server/index.js Просмотреть файл

@@ -3,7 +3,7 @@ var express = require("express"),
3 3
     compression = require("compression"),
4 4
     path = require("path"),
5 5
     multer = require("multer"),
6
-    uuid = require("node-uuid"),
6
+    uuid = require("uuid"),
7 7
     mkdirp = require("mkdirp");
8 8
 
9 9
 // Routes and middleware