Metadata-Version: 1.1
Name: thermos-cli
Version: 0.1.0
Summary: A command line program in Python for creating flask standard application structure, blueprints and templates.
Home-page: https://github.com/mwangi-njuguna/thermos-cli
Author: Mwangi Njuguna
Author-email: mwanginjuguna59@gmail.com
License: MIT
Description: ## Thermos CLI
        
        A flask command line interface built on python. 
        
        ## Note
        
        If you wish to collaborate,visit https://github.com/mwangi-njuguna/thermos-cli.
        
        
        ## Prerequisites
        
        Both the CLI and generated project have dependencies that require python3.6.
        
        ## Table of Contents
        
        * [Installation](#installation)
        * [Usage](#usage)
        * [Generating a New Flask Application](#Generating a new flask project)
        * [Generating Templates and Blueprints](#Generating templates and blueprints)
        * [Documentation](#documentation)
        * [License](#license)
        
        ## Installation
        
        **BEFORE YOU INSTALL:** please make sure you have python3.6 installed.
        
        
        ```bash
        pip install -e .
        ```
        
        ## Usage
        
        ```bash
        thermos --help
        ```
        
        ### Generating a Flask Project 
        
        ```bash
        thermos create PROJECT-NAME
        ```
        
        ### Generating Templates and Blueprints
        
        You can use the `thermos create app APPNAME` to create a new application structure:
        
        ```bash
        thermos create template TEMPLATENAME
        
        # Navigate into the new app
        cd NAMEOFAPP
        
        # if in the directory src/app/nameofapp/ and you run
        thermos create blueprint BLUEPRINTNAME
        
        ```
        
        ### Working with master
        
        ```bash
        git clone https://github.com/mwangi-njuguna/thermos-cli.
        cd thermos-cli
        pip install -e .
        ```
        
        `pip install -e .` will install this cli.
        
        Now you can use `thermos-cli` via the command line:
        
        ```bash
        
          thermos create
        
          thermos -h | --help
        
          thermos -v | --version
        
        ```
        
        ## Documentation
        
        The documentation for the thermos CLI is located in this repo's [wiki](https://github.com/gnhkjm/).
        
        ## License
        
        MIT
        
Keywords: flask,cli
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.6
