Blongo is an open-source Blog Web-App built on the Django Web Framework 2.x with Python3
- Generation of Atom and RSS feeds
- Generation of Sitemaps
- Post View Count
- Archive List with Yearly and Monthly categorization
- Tags for post
- Trix Rich Text Editor For Post Content
- Thumbnail/Cover Image for Post(supports image compression)
- Blog Configuration
- Bootswatch 4 themes (themes based on Bootstrap)
- Django
- pytz
- whitenoise
- django-trix-fork
- Create a Python-3.x Virtual Environment Creating Virtual Environments
- Install dependencies:
pip install -r requirements/dev.txt - Create a
.envfile with required environment variables (Sample -> sample.env) - Create database schema
python manage.py makemigrations blog - Run the migrations
python manage.py migrate - Create a superuser
python manage.py createsuperuser - Create default Blog config
python manage.py initialize_blog - Run Server
python manage.py runserver