mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-11-04 13:46:13 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			508 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			508 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const args = require("args-parser")(process.argv);
 | 
						|
const demoMode = args["demo"] || false;
 | 
						|
 | 
						|
const badgeConstants = {
 | 
						|
    naColor: "#999",
 | 
						|
    defaultUpColor: "#66c20a",
 | 
						|
    defaultDownColor: "#c2290a",
 | 
						|
    defaultPingColor: "blue",  // as defined by badge-maker / shields.io
 | 
						|
    defaultStyle: "flat",
 | 
						|
    defaultPingValueSuffix: "ms",
 | 
						|
    defaultPingLabelSuffix: "h",
 | 
						|
    defaultUptimeValueSuffix: "%",
 | 
						|
    defaultUptimeLabelSuffix: "h",
 | 
						|
};
 | 
						|
 | 
						|
module.exports = {
 | 
						|
    args,
 | 
						|
    demoMode,
 | 
						|
    badgeConstants,
 | 
						|
};
 |