Skip to content

Latest commit

 

History

History
68 lines (50 loc) · 1.35 KB

File metadata and controls

68 lines (50 loc) · 1.35 KB

Quick Start Guide

🚀 Get Started in 3 Steps

1. Install Dependencies

Server

cd server
npm install

Client

cd client
npm install

2. Set Up Environment Variables

Server

cp server/env.example server/.env
# Edit server/.env with your MongoDB connection and other settings

Client

cp client/env.example client/.env
# Edit client/.env if you need to change the API URL

3. Start the Application

Terminal 1 - Start Server

cd server
npm run dev

Terminal 2 - Start Client

cd client
npm start

🌐 Access Points

📋 What's Next?

  1. Set up MongoDB: Make sure MongoDB is running locally or configure cloud MongoDB in server/.env
  2. Configure Email: Set up email credentials in server/.env for notifications
  3. Create Admin Account: Use the API to create your first admin user
  4. Start Using: Register users, add books, and manage the library!

🆘 Need Help?


Happy Coding! 🎉