Bladeren bron

Distributed setup.

parisminton 8 jaren geleden
bovenliggende
commit
5e84c4ebdd
1 gewijzigde bestanden met toevoegingen van 4 en 2 verwijderingen
  1. 4 2
      settings/index.js

+ 4 - 2
settings/index.js Bestand weergeven

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