Metadata-Version: 1.1
Name: djangoDeployGitHook
Version: 0.3
Summary: A Django app to conduct automatic deploy and updade django instance.
Home-page: https://www.example.com/
Author: Alexandre Mbenza
Author-email: alexandrembenza@gmail.com
License: UNKNOWN
Description: ===================
        DjangoDeployGitHook
        ===================
        
        djangoDeployGitHook is a Django app to automatically update django instance from a git
        hook signal.
        
        
        Quick start
        -----------
        
        1. Add "djangoDeployGitHook" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'djangoDeployGitHook',
            ]
        
        2. Include the polls URLconf in your project urls.py like this::
        
            path('deploy/', include('djangoDeployGitHook.urls')),
        
        3. Visit http://127.0.0.1:8000/deploy/test_update too see 'Hello, From DjangoDeployGitHook!'.
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.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
