Metadata-Version: 2.1
Name: django-photogallery
Version: 0.2.0
Summary: A Django app to create gallery of photos.
Home-page: UNKNOWN
Author: Tasari
Author-email: Tasari@wp.pl
License: BSD-3-Clause
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.1
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

============
Photogallery
============

Photogallery is Django app to allow users to look through pictures 
and posts created by admin.

Quick start
-----------
1. Install photogallery::

    pip install django-photogallery

2. Add "photogallery" to INSTALLED_APPS::

    INSTALLED_APPS = [
        ...
        'photogallery',
    ]

3. Add photogallery URLconf to urls.py::

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

4. Run ``python manage.py migrate`` to create models.

5. Start the server and add post on http://127.0.0.1:8000/admin/ after enabling Admin app.

6. Visit http://127.0.0.1:8000/photogallery/ to look through all added picture posts.


