2021-10-15 12:57:26 -04:00
|
|
|
const args = require("args-parser")(process.argv);
|
|
|
|
const demoMode = args["demo"] || false;
|
|
|
|
|
2022-01-04 06:21:53 -05:00
|
|
|
const badgeConstants = {
|
|
|
|
naColor: "#999",
|
|
|
|
defaultUpColor: "#66c20a",
|
|
|
|
defaultDownColor: "#c2290a",
|
|
|
|
defaultPingColor: "blue", // as defined by badge-maker / shields.io
|
|
|
|
};
|
|
|
|
|
2021-10-15 12:57:26 -04:00
|
|
|
module.exports = {
|
|
|
|
args,
|
2022-01-04 06:21:53 -05:00
|
|
|
demoMode,
|
|
|
|
badgeConstants
|
2021-10-15 12:57:26 -04:00
|
|
|
};
|