Metadata-Version: 2.1
Name: django-bloggy
Version: 1.0
Summary: A Django blog app with features of a standard blogging platform.
Home-page: https://blo2gy.herokuapp.com/blog
Author: yusufadell
Author-email: youseefadel777@gmail.com
License: GNUv3
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Django (>=3.2)
Requires-Dist: asgiref (==3.4.1)
Requires-Dist: astroid (==2.8.4)
Requires-Dist: dj-database-url (==0.5.0)
Requires-Dist: Django (==3.2.9)
Requires-Dist: django-heroku (==0.3.1)
Requires-Dist: django-taggit (==1.5.1)
Requires-Dist: djangorestframework (==3.12.4)
Requires-Dist: gunicorn (==20.1.0)
Requires-Dist: isort (==5.10.1)
Requires-Dist: lazy-object-proxy (==1.6.0)
Requires-Dist: Markdown (==3.2.1)
Requires-Dist: mccabe (==0.6.1)
Requires-Dist: platformdirs (==2.4.0)
Requires-Dist: psycopg2 (==2.9.1)
Requires-Dist: psycopg2-binary (==2.9.1)
Requires-Dist: pylint (==2.11.1)
Requires-Dist: pytz (==2021.3)
Requires-Dist: sqlparse (==0.4.2)
Requires-Dist: toml (==0.10.2)
Requires-Dist: typing-extensions (==3.10.0.2)
Requires-Dist: whitenoise (==5.3.0)
Requires-Dist: wrapt (==1.13.3)

bloggy
======

bloggy is A Django blog app with features of a standard blogging platform, Comment system and tagging functionality, System to share your site's content by email and a custom sitemap and feed for blog posts.

Detailed documentation is in the docs directory.

Quick start
===========

1.  Add bloggy to your INSTALLED\_APPS setting like this:

        INSTALLED_APPS = [
            ...
            'blog',
        ]

2.  Include the blog URLconf in your project urls.py like this:

        path('blog/', include('blog.urls')),
        

3.  Run python manage.py migrate to create the polls models.

4.  Start the development server and visit <http://127.0.0.1:8000/admin/> to create a blog (you'll need the Admin app enabled).

5.  Visit <http://127.0.0.1:8000/blog/> to participate in the poll.



