exchangemarket/docs/scripts/floGlobals.js
sairajzero 48609bd1b7 Changing env-var to arguments
- Changes console.log and console.debug to relevant types
- PASSWORD and I environment variables are now passed as arguments to npm commands
- Added optional argument `--debug`. when passed, console.debug is also logged, else console.debug are turned off
2022-10-25 03:18:36 +05:30

8 lines
216 B
JavaScript

const floGlobals = {
blockchain: "FLO",
application: "exchange",
adminID: "FMxYC7gYZhouzqtHZukGnPiQ8nvG4CMzXM",
currency: "rupee"
};
('object' === typeof module) ? module.exports = floGlobals : null;