Step 1: Fork and clone this repository.
git clone https://github.com/{username}/e-library.git
Step 2: Create MySQL database.
mysql -u root
mysql> CREATE DATABASE elibrary;
Step 3: Rename the .env.example
file to .env
mv .env.example .env
Step 4: Install dependencies.
npm install
Step 5: Run the app in development mode. then open http://localhost:3000 in the browser.
npm run dev