Metadata-Version: 2.1
Name: WebDeploy
Version: 1.0.1
Summary: WebDeploy is a python package for deploying Flask/Django applications at ease.
Home-page: https://github.com/idaljeetsingh/WebDeploy
Author: Daljeet Singh Chhabra
Author-email: idaljeetsingh@outlook.com
License: MIT
Description: # WebDeploy
        
        A simple command line package for deploying Flask/Django apps on a Ubuntu system. <br>
        
        ## Install
        
        ### Using pip 
        
        `$ sudo pip3 install webdeploy`
        
        ### Using source 
        
        ```
        $ git clone https://github.com/idaljeetsingh/webdeploy
        $ cd webdeploy
        $ sudo python3 setup.py install
        ```
        
        ## Notes
        
        * A fresh Ubuntu installation is preferred.
        * ***Installing the package using sudo is necessary as it will make changes on system by installing packages to deploy the app.***
        
        
        ## Usage
        
        Using the package is very simple. Just open the terminal and type respective command for either Flask or Django app.<br>
        There are two ways for initiating the deploy sequence
        1. From the project root directory - ***Picks up default information automatically***
        2. Anywhere in the system - ***Requires to enter project information manually***
        
        #### Flask
        
        `WebDeploy-flask`
        
        #### Django
        
        `WebDeploy-django`
        
        ## License
        
        [MIT License](LICENSE)
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
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: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Requires-Python: >=3.5
Description-Content-Type: text/markdown
