From 34457b511886edd798814ccef548e5101e5f9dcd Mon Sep 17 00:00:00 2001 From: Sai Raj <39055732+sairajzero@users.noreply.github.com> Date: Wed, 8 Dec 2021 14:16:43 +0530 Subject: [PATCH 1/3] Update README.md --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index baf86f0..6b09af1 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,25 @@ # 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 run configure-backup - Configure the backup. +npm run create-backup-schema - Create backup-schema in MySQL database. +npm run backup - Run the backup-node. + +npm start - Start the application (main). + +NOTE: env variable 'PASSWORD' required for 'npm start'. + +WINDOWS: +$env:PASSWORD=""; npm start + +LINUX: +PASSWORD=" npm start From 59046ffd50df3dddeff4f3ff94b7bb29b60e87fd Mon Sep 17 00:00:00 2001 From: Sai Raj <39055732+sairajzero@users.noreply.github.com> Date: Wed, 8 Dec 2021 14:17:32 +0530 Subject: [PATCH 2/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 6b09af1..479668a 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ ## 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). @@ -23,3 +24,4 @@ $env:PASSWORD=""; npm start LINUX: PASSWORD=" npm start +``` From c4a5455b41c57c0d93acfb32697842629fbdbfc1 Mon Sep 17 00:00:00 2001 From: Sai Raj <39055732+sairajzero@users.noreply.github.com> Date: Wed, 26 Jan 2022 02:31:23 +0530 Subject: [PATCH 3/3] Update README.md --- README.md | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 479668a..5bf29b2 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # exchange-market Exchange market for FLO to rupee# and vise-versa -## Run commands +## Run `commands` --------------- ``` @@ -11,17 +11,28 @@ 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 run configure-backup - Configure the backup. -npm run create-backup-schema - Create backup-schema in MySQL database. -npm run backup - Run the backup-node. npm start - Start the application (main). +``` +**NOTE:** +env variable `PASSWORD` required for `npm start`. -NOTE: env variable 'PASSWORD' required for 'npm start'. - -WINDOWS: +Windows: +``` $env:PASSWORD=""; npm start - -LINUX: +``` +Linux: +``` 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=""; +``` +Linux: +``` +I="" +```