Metadata-Version: 2.1
Name: simplegitweb
Version: 0.1.6
Summary: A Python git web server that base on dulwich lib
Home-page: https://pypi.org/project/simplegitweb/
Author: dengyt
Author-email: dengyt@dengyt.net
License: Apache License, Version 2.0
Description: 
        # simplegitweb
        ----------------------
        
        A Python git web server that base on dulwich lib.
        
        ## install
            python setup.py install
            or pip install simplegitweb
            then find and run bash script "simplegitweb/systemd/install_service.sh" install systemd service
        
        ## use
        gitwebserver.py
        ```python
        from simplegitweb import simplegitweb as gitweb
        if __name__ == '__main__':
            gitweb.main()
        ```
        simplegitweb.conf
        ```bash
        [DEFAULT]
        scanpath = /opt/simplegitweb/
        listen_address = 127.0.0.5
        port = 3000
        ```
            python gitwebserver.py --config simplegitweb.conf
        Use browser to browse this [default address](http://127.0.0.5:3000) you can add your project.
        
        ## caddy proxy example
        ```bash
        https://example.com {
            proxy / http://127.0.0.5:3000
            basicauth / 'your name' 'password'
            tls example@example.com
        }
        ```
        
Keywords: git gitserver gitweb version control
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Operating System :: POSIX
Classifier: Topic :: Software Development :: Version Control
Description-Content-Type: text/markdown
