Metadata-Version: 2.1
Name: guniflask
Version: 0.2.3
Summary: flask + gunicorn + gevent
Home-page: https://github.com/jadbin/guniflask
Author: jadbin
Author-email: jadbin.com@hotmail.com
License: Apache 2
Description: =========
        guniflask
        =========
        
        .. image:: https://travis-ci.org/jadbin/guniflask.svg?branch=master
            :target: https://travis-ci.org/jadbin/guniflask
        
        .. image:: https://coveralls.io/repos/github/jadbin/guniflask/badge.svg?branch=master
            :target: https://coveralls.io/github/jadbin/guniflask?branch=master
        
        .. image:: https://img.shields.io/badge/license-Apache 2-blue.svg
            :target: https://github.com/jadbin/guniflask/blob/master/LICENSE
        
        Overview
        ========
        
        guniflask是自动化生成基于flask + gunicorn + gevent的服务端项目基础代码的构建工具。
        
        Installation
        ============
        
        guniflask需要Python 3.5或更高版本的环境支持。
        
        可以通过pip安装或升级guniflask::
        
            pip install -U guniflask
        
        Getting Started
        ===============
        
        新建一个空文件夹 ``foo`` 并进入到 ``foo`` 中运行guniflask::
        
            $ mkdir foo && cd foo
            $ guniflask init
        
        当出现提示时按 ``Enter`` 键即可选择默认设置。
        提示项目创建成功后，执行启动项目的命令::
        
            $ bash bin/manage start
        
        提示项目已启动后，在浏览器中访问 http://localhost:8000/api/hello-world 即可看到::
        
            Hello World!
        
        执行停止项目的命令::
        
            $ bash bin/manage stop
        
        Documentation
        =============
        
        https://guniflask.readthedocs.io/
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.5
Provides-Extra: app
