Exchange market for FLO to rupee# and vise-versa
Go to file
sairajzero 2a125eb4d2 Verify backup data integrity
- Backup data integrity is verified using Checksum for each table
- If checksum mismatch is found (for a table) after a backup sync, the table data is cleared and re-synced
- Moved backup sync module to backup/sync.js
- Fixed: checkForRatedSellers not using correct asset when checking for rated sellers
- Others: priceHistory is converted toFixed(3) before storing in DB. (As large/non-terminating decimals cause ambiguity btw nodes during checksum)
2022-02-16 01:55:31 +05:30
args Backup Sync improvements 2022-02-08 06:26:03 +05:30
public Bug fix And UI for asset/token selection 2022-02-08 20:44:55 +05:30
setup Update truncateAll.sql 2022-01-26 02:22:33 +05:30
src Verify backup data integrity 2022-02-16 01:55:31 +05:30
.gitattributes Initial commit 2021-08-30 21:57:41 +05:30
.gitignore multi-node support 2022-01-23 03:24:27 +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>