A note taking webapp from a tutorial by @techwithtim. Built using React and Django.
- Added a delete user view and system
- Custom alert messages
- Completed with Bruno Mars's
Finesse
playing in the background
Starting a project: django-admin startproject [foldername]
making apps : py [filename] startapp [name]
create file to migrate: py [filename] makemigrations
migrate files to db py [filename] migrate
tip: keep auth paths seperate from user paths etc
Start frontend: npm create vite@latest frontend -- --template react
(also installs vite)
Install packages:
npm install axios
npm install react-router-dom
npm install jwt-decode
Current deployment is on Choreo, but the code is now for local usage only. Deployment related code has been commented