Skip to content

Latest commit

 

History

History
71 lines (61 loc) · 2.07 KB

File metadata and controls

71 lines (61 loc) · 2.07 KB

Frappe-Library-Management-Web-Application

Problem statement link

💡 Main Ideas

  • Page navigation kept minimal, for quick single page application like usage.
  • Instant search as you type allows fast lookup of books, Debouncing implemented to reduce api calls.
  • Keep main functionality at easy reach, issuing and returning book, in the home screen using Side Drawers.
  • Avoid unnecessary prompts for editing small fields, such as Book Stock, has been done with simple edit button within Book details UI.
  • Integration to Frappe API done via backend, which scans through several pages of the api as required for larger no of books.
  • CRUD operations implemented through Forms within Modals.

📺 Demo

📊 Data Design

DataDesign

📦 Libraries used

Frontend

  • Svelte and Sveltkit
  • Tailwind CSS
  • Skeleton UI Toolkit for Svelte

Backend

  • Flask
  • Flask Migrate and Alembic
  • SQLAlchemy

Database

  • Postgresql

⚙️ Running locally

Run in order:

Database (AWS RDS)

cd database
docker-compose up --build

Backend (AWS EC2)

cd backend
pip install -r requirements.txt
flask db upgrade
flask run

Frontend (Netlify)

npm install
npm run dev