Metadata-Version: 1.2
Name: django-directory-tree
Version: 1.0
Summary: A Django app to conduct Web-based directory-tree.
Home-page: https://www.example.com/
Author: topper
Author-email: a5810091a@gmail.com
License: MIT License
Description: # Directory-Tree
        
        Directory Tree is a Django app to see all directory in media folder.
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "directory_tree" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'directory_tree',
            ]
        
        2. Add MEDIA_URL and MEDIA_ROOT to your setting.py setting like this (Optional)::
        
            BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
        
            MEDIA_URL = '/media/'
            MEDIA_ROOT = str(BASE / 'media')
        
        3. Add media path in your project urls.py like this (Optional)::
        
            from django.conf import settings
            from django.conf.urls.static import static
        
            urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
        
        3. Include the directorty tree URLconf in your project urls.py like this::
        
            path('directory_tree/', include('directory_tree.urls')),
        
        
        4. Start the development server and visit http://127.0.0.1:8000/admin/
           to login by admin user
        
        5. Visit http://127.0.0.1:8000/directory_tree/ to participate in the directory tree.
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT 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.5
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.5
