Easy Deployment Tool
Project description
Easy Deployment
Easy deployment tool for Python application. It can manage virtual environment and create service.
Install
Download and install the ez-deploy
package for python.
pip install ez-deploy
Usage:
Use the ez-deploy
command to manage deployment.
usage: ez_deploy.py [-h] [-c CONFIG] [--env ENV] [--requirements REQUIREMENTS]
[--dir DIR] [--service-name SERVICE_NAME]
[--service-start SERVICE_START]
[--service-program SERVICE_PROGRAM]
[--service-arguments SERVICE_ARGUMENTS [SERVICE_ARGUMENTS ...]]
[--service-display SERVICE_DISPLAY]
[--service-description SERVICE_DESCRIPTION]
[--service-depend SERVICE_DEPEND]
[--service-obj SERVICE_OBJ]
[--service-password SERVICE_PASSWORD]
[--service-file SERVICE_FILE]
[--service-convert-path SERVICE_CONVERT_PATH]
command
Easy Deployment Tool
positional arguments:
command Command <env|deploy|install|uninstall|start|stop>
optional arguments:
-h, --help show this help message and exit
-c CONFIG, --config CONFIG
use config file (JSON format, default=deployment.json)
--env ENV virtual environment path
--requirements REQUIREMENTS
package requirements file (default=requirements.txt)
--dir DIR package lookup directory
--service-name SERVICE_NAME
service name
--service-start SERVICE_START
service start mode <auto|manual> (default=manual)
Options for Windows:
Service options for Windows
--service-program SERVICE_PROGRAM
service bin path
--service-arguments SERVICE_ARGUMENTS [SERVICE_ARGUMENTS ...]
service arguments
--service-display SERVICE_DISPLAY
service display name
--service-description SERVICE_DESCRIPTION
service description
--service-depend SERVICE_DEPEND
service dependencies
--service-obj SERVICE_OBJ
service login account
--service-password SERVICE_PASSWORD
service login password
--service-restart restart service after service failure
--service-restart-delay SERVICE_RESTART_DELAY
restart delay(in seconds) after service failure
Options for Linux:
Service options for Linux
--service-file SERVICE_FILE
service file to install (default=SERVICE_NAME.service)
--service-convert-path SERVICE_CONVERT_PATH
convert service path to absolute path
Also, you can create a deployment.json
file in a directory and run ez-deploy
to load it.
{
"env": "venv",
"requirements": "requirements.txt",
"dir": "packages",
"service": {
"name": "example",
"program": "python",
"arguments": ["main.py"],
"display": "Example Service",
"description": "A service",
"start": "auto",
"file": "example.service",
"restart": true,
"restart_delay": 30
}
}
Examples
- Create a virtual environment named
venv
:
ez-deploy env --env=venv
- Install packages in the virtual environment:
ez-deploy deploy --env=venv --requirements=requirements.txt
- Run a python script as service:
ez-deploy install --service-name=python-service --service-program=/usr/bin/python --service-arguments main.py
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file ez_deploy-1.0.4-py3-none-any.whl
.
File metadata
- Download URL: ez_deploy-1.0.4-py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a03abd7b6aea4d4d5dc3c6c08f9dfd2f3ac7a2a21b8ffa3b71fb506046cdf7e7 |
|
MD5 | f96b0ce2ea6eaa184672e909bbdc9b15 |
|
BLAKE2b-256 | bbadf3e673f80dfa0aa27d638715cef4a8b42f42836d1fd6dba407121e043dea |