From 1f14eae4b6952afc40f8f0cd5b1fcec2c6897b66 Mon Sep 17 00:00:00 2001 From: Mohammad Fares Date: Sun, 14 Oct 2018 21:54:39 +0300 Subject: [PATCH] Add BASEURL global constant --- app.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app.js b/app.js index 202912c..7455d60 100644 --- a/app.js +++ b/app.js @@ -39,6 +39,9 @@ global.di = di; // Define the the root path of the app as a global constant global.ROOT_PATH = __dirname; +// The base url of the Terminalizer website +global.BASEURL = 'https://terminalizer.com'; + // Dependency Injection di.set('is', is); di.set('chalk', chalk);