Removed create-schema command

- Removing create-schema command as its not creating triggers.
This commit is contained in:
sairajzero 2023-01-02 01:09:59 +05:30
parent 1ad701a70b
commit 8eb6d130d1
3 changed files with 6 additions and 6 deletions

View File

@ -19,7 +19,6 @@
"setup": "node setup/post-install.js",
"configure": "node setup/configure-settings.js",
"reset-password": "node setup/reset-password.js",
"create-schema": "node setup/create-schema.js",
"checksum-db": "node debug/checksum-db.js",
"start": "node start.js"
},

View File

@ -51,13 +51,13 @@ function configureSQL() {
flaggedYesOrNo('Do you want to re-configure mySQL connection').then(value => {
if (value) {
console.log('Enter mySQL connection values: ')
getInput.Text('Host', config['sql_host']).then(host => {
getInput.Text('MySQL Host', config['sql_host']).then(host => {
config['sql_host'] = host;
getInput.Text('Database name', config['sql_db']).then(dbname => {
config['sql_db'] = dbname;
getInput.Text('MySQL username', config['sql_user']).then(sql_user => {
config['sql_user'] = sql_user;
getInput.Text('Mysql password', config['sql_pwd']).then(sql_pwd => {
getInput.Text('MySQL password', config['sql_pwd']).then(sql_pwd => {
config['sql_pwd'] = sql_pwd;
resolve(true);
})
@ -98,6 +98,7 @@ function configure() {
return reject(false);
}
console.log('Configuration successful!');
/*
if (sql_result) {
getInput.YesOrNo('Do you want to create schema in the database').then(value => {
if (value) {
@ -113,7 +114,8 @@ function configure() {
}
});
} else
resolve(true);
*/
resolve(true);
})
})
})

View File

@ -5,9 +5,8 @@ Exchange market
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 configure - Configure the node.
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).