Metadata-Version: 1.1
Name: django-photogallery
Version: 0.1
Summary: A Django app to create gallery of photos.
Home-page: UNKNOWN
Author: Tasari
Author-email: Tasari@wp.pl
License: BSD-3-Clause
Description: ============
        Photogallery
        ============
        
        Photogallery is Django app to allow users to look through pictures 
        and posts created by admin.
        
        Quick start
        -----------
        
        1. Add "photogallery" to INSTALLED_APPS::
            
            INSTALLED_APPS = [
                ...
                'photogallery',
            ]
        
        2. Add photogallery URLconf to urls.py::
        
            path('photogallery/', include('photogallery.urls')),
        
        3. Run ``python manage.py migrate`` to create models.
        
        4. Start the server and add post on http://127.0.0.1:8000/admin/ after enabling Admin app.
        
        5. Visit http://127.0.0.1:8000/photogallery/ to look through all added picture posts.
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
