forked from mozilla/openbadges-backpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheroku.js
More file actions
23 lines (22 loc) · 715 Bytes
/
heroku.js
File metadata and controls
23 lines (22 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
var Habitat = require("habitat");
var default_env = new Habitat();
var env = new Habitat("openbadges");
var Path = require("path");
module.exports = {
config: {
protocol: env.get("protocol"),
hostname: env.get("hostname"),
port: default_env.get("port"),
force_https: env.get("force_https"),
remote_port: env.get("remote_port"),
var_path: Path.resolve(env.get("var_path")),
badge_path: Path.resolve(env.get("badge_path")),
admins: env.get("admins"),
database: env.get("database"),
identity: env.get("identity"),
less: env.get("less"),
nunjucks_precompiled: env.get("nunjucks_precompiled"),
new_relic: env.get("new_relic"),
mailer: env.get("mailer"),
}
};