Heroku-style command line interface for Dokku
Project description
Note: This project is in the very early stages of development. You can help by adding commands (see below).
Installation
pip install dokku-client
Configuration
You can specify the Dokku host & app on the command line, but you may find it convenient to set the following environment variables instead:
export DOKKU_HOST=ubuntu@myserver.com
export DOKKU_APP=my-app-name
Setting these variables in your virtualenv’s postactivate hook may be useful.
Usage
Once installed, usage is simple:
dokku-client help
Produces:
Client for Dokku
usage:
dokku-client <command> [<args>...]
dokku-client help
global options:
-H <host>, --host=<host> Host address
-a <app>, --app=<app> App name
full list of available commands:
help Show this help message
configget Set one or more config options
configset Set one or more config options in the app's ENV file
prompt Open a prompt
restart Restart the container
See 'git help <command>' for more information on a specific command.
Contributing new commands
Dokku-client allows any developer to hook in extra commands. This is done using exactly the same mechanism that dokku-client uses internally, that of entry points provided by setuptools.
First, create a python package. You may have your own favorite way of doing this, but I use seed:
mkdir dokku-client-mycommand
cd dokku-client-mycommand
pip install seed
seed create
ls
Second, create a class which extends dokku_client.BaseCommand and implements the method main(args). Also, the doc-block at the top of the class will be used by docopt to parse any command line arguments, so make sure you include that. See the prompt command for an example.
And third, in your new setup.py file, specify your new class as an entry point:
entry_points={
'dokku_client.commands': [
'mycommand = dokku_client_mycommand.mycommand:MyCommand',
],
}
Run setup.py so that the new entry point is initialized:
# Run in develop mode, so files will not be copied away.
# You can continue to edit your code as usual
python setup.py develop
You should now find that your new command is available in dokku-client, run dokku-client help to check.
Once done, you can release your package to PyPi using seed release --initial.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file dokku-client-0.2.3.tar.gz
.
File metadata
- Download URL: dokku-client-0.2.3.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3456c5329fa54dcb294d117f50b3a7ae8d1a8ecaa228a4178c18c3ad98c197e |
|
MD5 | d534e8020dac96dafc49d4a81643eb5e |
|
BLAKE2b-256 | d212fde068e572e8ca1beef8add599af53c1cc2c6bc470ad1dcc7455ef90429c |