Just a simple webapp that I can write some blog posts, have a page with my resume and an about me.
This is designed in Django. I did follow this guide to get started. I have drifted from that tutorial a bit, but its a great starting point.
No one but me should really be running it, but in case you really want to.
- Clone the repo
- Create a virtual environment
uv venv- Source the virtual environment
source .venv/bin/activate- Download the dependenices
uv sync- Set up the Django migrations
uv run manage.py migrate- Run the server on your local
uv run manage.py runserver- Open localhost:8000 in a browser