cd server
npm installcd client
npm installcp server/env.example server/.env
# Edit server/.env with your MongoDB connection and other settingscp client/env.example client/.env
# Edit client/.env if you need to change the API URLcd server
npm run devcd client
npm start- Frontend: http://localhost:3000
- Backend API: http://localhost:5000
- API Health Check: http://localhost:5000/api/health
- Set up MongoDB: Make sure MongoDB is running locally or configure cloud MongoDB in
server/.env - Configure Email: Set up email credentials in
server/.envfor notifications - Create Admin Account: Use the API to create your first admin user
- Start Using: Register users, add books, and manage the library!
- Check the main README.md for detailed documentation
- Review PROJECT_STRUCTURE.md for project organization
- See SETUP.md for comprehensive setup instructions
Happy Coding! 🎉