My blog is simple neat and clean blog site built with Django, HTMX, and Bootstrap 5.
Search box added, Now you can search a word in blogs.
For blog views, Tests Added. Including Login, Registration, Pages, Permissions.
Summernote WYSIWYG Editor Added
git clone https://github.com/4yub1k/djblog.git
cd djblog
python -m venv .venv
.venv\Scripts\activate
Make sure Virtual Environment is enabled/activated
pip install -r requirements.txt
set SECRET_KEY=YOUR_SECRET_KEY_FROM_SETTINGS.PY
set DEBUG=True
python manage.py collectstatic
python manage.py makemigrations
or
python manage.py makemigrations blog
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
Now go to login page enter super user credentials.
pytest