just-notes-htmx
just-notes-htmx copied to clipboard
Simple Notes App (Django, HTMX, Alpine.js, TailwindCSS)
Just Notes
Simple Notes App
Light Theme | Dark Theme |
---|---|
![]() |
![]() |
Deployed with Fly.io - just-notes.fly.dev
Dummy Credentials:
email: [email protected]
password: dummypassword
Created using Django, HTMX, Alpine.js, TailwindCSS
Functionality:
- [x] Register/Login
- [x] Profile Page:
- [x] Profile Details update
- [x] Home (Notes) Page:
- [x] List All Notes
- [x] All Notes counter
- [x] Create a new Note
- [x] Update Note
- [x] Delete Note
- [x] Bulk Actions on Notes:
- [x] Selected Notes counter
- [x] Select All Notes option
- [x] Bulk Delete selected Notes
- [x] Bulk Change 'Completed' Status on selected Notes
- [x] Pagination
- [x] Live Search
- [x] Filter by
is_completed
status
- [x] List All Notes
- [ ] Analytics Page (WIP):
- [x] Base Analytics about Completed Notes per Month
- [ ] ...
- [x] Toasts Application to show Django Messages with HTMX
- [x] Auto-dismissed Toasts
- [x] Manual Toast dismiss
- [x] Dark/Light mode:
- [x] Manual switching
- [x] Detecting system theme switching
Stack
-
Django
for the backend server -
TailwingCSS
for frontend styling -
HTMX
to make a frontend dynamic and interactive like a "reactive" apps -
Alpine.js
for state management and frontend interactivity -
JavaScript
for minor but important for usability(interactivity) things: theme switching, toasts, etc
Steps to run locally:
- create a virtual environment
- install requirements:
pip install -r requirements.txt
- run migrations:
python manage.py migrate
- start server:
python manage.py runserver