I made this web app in the last year at the college 🏫.
It didn't had fancy JavaScript framework, just pure Django + little bit of jQuery 👴.
There is hype going around with HTMX library. So I decided to give it a try 🆒.
Backend: Python + Django 🐍
Database: SQLite 🏬
Frontend: HTMX + Alpine.js 🏂
git clone https://github.com/uros-5/bookstore
cd bookstorepython3 -m venv venv
source venv/bin/activatepip3 install -r requirements.txtpython3 manage.py makemigrations
python3 manage.py migratePopulating database will be executed in 'django shell'.
python3 manage.py shellIn shell paste this
from bookstore import db_workIt will fetch images and do all database related work.
cd bookstore/ui
npm install
npm run build
cd ../..sh runserver.sh



