Very simple and basic fullstack blogging platform built with Django and SQLite as a learning project for school! This is my first time using the Django Python web framework and SQLite as the database. You can see all the dependencies required to run this project in requirements.txt, and it also uses Tailwind CDN for styling (I know this is the opposite of being optimized or performant but this isn't that serious of a project so...)
To run the app locally, make sure you have Python installed, clone the repo, configure venv, and simply run the commands:
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py runserver
Make sure you have .env configured following the template in .env.example, and you should be able to see the app at http://127.0.0.1:8000/!