a command-line application that manages a company's employee database, using Node.js, Inquirer, and MySQL.
To use this application you must have Node.js and SQL installed on your system. Visit node installation and SQL installation to download and install.
After installing the required softwares, clone the repository. In the terminal, navigate to the application's directory, then run the following command once:
npm install
In the terminal, once you have navigated to the application's directory and installed the node package manager, go to the index.js file and update the SQL database password. Go to your MySQL shell and populate the database by running the following commands:
source db/db.sql;
source db/schema.sql;
source db/seeds.sql;
quit;
Then run the following command to start the application:
node index.js
The application will execute in your terminal. Simply answer the prompts in the terminal and add, delete or update data.
Contact information is provided below:
- Author: Yashar Sarabi
- Github: Yasharjs
- Email: [email protected]
This project is licensed under the The Unlicensed