Explorar el Código

Distributed setup.

parisminton hace 8 años
padre
commit
5e84c4ebdd
Se han modificado 1 ficheros con 4 adiciones y 2 borrados
  1. 4 2
      settings/index.js

+ 4 - 2
settings/index.js Ver fichero

@@ -20,12 +20,14 @@ var path = require("path");
20 20
 
21 21
 module.exports = {
22 22
   workingDirectory: path.join(__dirname, "..", "tmp"),
23
-  storagePath: path.join(__dirname, "..", "media"),
23
+  storagePath: "applications/audiogram/media",
24
+  s3Bucket: "int.stg.nyt.com",
24 25
   fonts: [
25 26
     { family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-Regular.ttf") },
26 27
     { family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-Light.ttf"), weight: 300 },
27 28
     { family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-Bold.ttf"), weight: "bold" },
28 29
     { family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-Italic.ttf"), style: "italic" },
29 30
     { family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-BoldItalic.ttf"), weight: "bold", style: "italic" }
30
-  ]
31
+  ],
32
+  worker: true;
31 33
 };