Browse Source

Distributed setup.

parisminton 8 years ago
parent
commit
5e84c4ebdd
1 changed files with 4 additions and 2 deletions
  1. 4 2
      settings/index.js

+ 4 - 2
settings/index.js View File

@@ -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
 };