implement 'FRESH MODE'

This commit is contained in:
ansuz
2017-12-11 11:13:06 +01:00
parent 024aa741a7
commit 5f0a865028
2 changed files with 9 additions and 1 deletions

View File

@@ -32,6 +32,13 @@ if (DEV_MODE) {
console.log("DEV MODE ENABLED");
}
var FRESH_MODE = !!process.env.FRESH;
var FRESH_KEY = '';
if (FRESH_MODE) {
console.log("FRESH MODE ENABLED");
FRESH_KEY = +new Date();
}
const clone = (x) => (JSON.parse(JSON.stringify(x)));
var setHeaders = (function () {
@@ -136,7 +143,7 @@ app.get('/api/config', function(req, res){
'var obj = ' + JSON.stringify({
requireConf: {
waitSeconds: 60,
urlArgs: 'ver=' + Package.version + (DEV_MODE? '-' + (+new Date()): ''),
urlArgs: 'ver=' + Package.version + (FRESH_KEY? '-' + FRESH_KEY: '') + (DEV_MODE? '-' + (+new Date()): ''),
},
removeDonateButton: (config.removeDonateButton === true),
allowSubscriptions: (config.allowSubscriptions === true),