A microblog with reddit-like comment system.
Try live here
bloggy requires Python 3.7+ to run.
Install the dependencies, make migrations and start the server.
$ cd bloggy
$ pip install -r requirements.txt
$ python3 manage.py makemigrations
$ python3 manage.py migrate
$ python3 manage.py runserver
Using Poetry:
$ cd bloggy
$ poetry install
$ python3 manage.py makemigrations
$ python3 manage.py migrate
$ python3 manage.py runserver
$ python3 manage.py test
Feel free to contribute to the project by making pull requests!
Please run pre-commit run
before creating a PR.
- Django - Python Web framework
This project is licensed under the MIT License - see the LICENSE.md file for details