Exchange market for FLO to rupee# and vise-versa
Go to file
sairajzero 54470b42d7 get-rates API improved
- get-rates API will now give a countDown timer
- this will be time at which next price update will happen unless a trade occurs
- Update: _constants.js for previous update
2022-05-07 00:03:36 +05:30
args Bug fixes 2022-04-27 00:29:51 +05:30
docs Minor UI fixes 2022-05-06 15:14:33 +05:30
setup update std-op 2022-04-26 03:30:51 +05:30
src get-rates API improved 2022-05-07 00:03:36 +05:30
.gitattributes Initial commit 2021-08-30 21:57:41 +05:30
.gitignore Bug fix: getRate for an asset not working 2022-03-29 15:53:01 +05:30
LICENSE Adding package.json 2021-10-16 00:19:48 +05:30
package.json multi-node support 2022-01-23 03:24:27 +05:30
README.md Update README.md 2022-01-26 02:31:23 +05:30
start.js Create start.js and main.js 2021-08-30 22:04:19 +05:30

exchange-market

Exchange market for FLO to rupee# and vise-versa

Run commands


npm install                     - Install the app and node modules.
npm run help                    - List all commands.
npm run setup                   - Finish the setup (configure and reset password).
npm run configure               - Configure the app.
npm run reset-password          - Reset the password (for private-key).
npm run create-schema           - Create schema in MySQL database.

npm start                       - Start the application (main).

NOTE: env variable PASSWORD required for npm start.

Windows:

$env:PASSWORD="<password>"; npm start

Linux:

PASSWORD="<password"> npm start

(Optional) Multiple instance can be run/setup on the same dir with different config files by using env variable 'I'.

Windows:

$env:I="<instance_ID>"; <command>

Linux:

I="<instance_ID>" <command>