12345678910111213141516171819202122232425262728293031323334353637 |
-
-
- var path = require("path");
-
- module.exports = {
- workingDirectory: path.join(__dirname, "..", "tmp"),
- storagePath: "applications/audiogram/media",
- s3Bucket: process.env.S3_BUCKETS_NAME,
- fonts: [
- { family: "NYT Franklin", file: path.join(__dirname, "fonts", "nyt-franklin-500-normal.woff") },
- { family: "NYT Franklin Bold", file: path.join(__dirname, "fonts", "nyt-franklin-700-normal.woff") },
- { family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-Regular.ttf") },
- { family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-Light.ttf"), weight: 300 },
- { family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-Bold.ttf"), weight: "bold" },
- { family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-Italic.ttf"), style: "italic" },
- { family: "Source Sans Pro", file: path.join(__dirname, "fonts", "SourceSansPro-BoldItalic.ttf"), weight: "bold", style: "italic" }
- ],
- redisHost: process.env.REDIS_URI,
- worker: true
- };
|