diff --git a/Makefile b/Makefile index 9a030533..5007eea1 100644 --- a/Makefile +++ b/Makefile @@ -72,7 +72,7 @@ livedocs: docs .livedocs @echo " RUNNING DOCS" @echo "===========================================================" @echo - . $(VIRTUALENV_DIR)/bin/activate; sphinx-autobuild -H 0.0.0.0 -b html $(DOC_SOURCE_DIR) $(DOC_BUILD_DIR)/html + . $(VIRTUALENV_DIR)/bin/activate; sphinx-autobuild --host 0.0.0.0 -b html $(DOC_SOURCE_DIR) $(DOC_BUILD_DIR)/html @echo .PHONY: .cleandocs diff --git a/docs/source/packs.rst b/docs/source/packs.rst index 0bb9c39b..82fde524 100644 --- a/docs/source/packs.rst +++ b/docs/source/packs.rst @@ -99,8 +99,14 @@ Exchange, and you can install your own packs from git just as easily. .. code-block:: bash - # Install your own pack from git + # Install your own pack from git using http(s) st2 pack install https://github.com/emedvedev/chatops_tutorial + + # Install your own pack from git using ssh + st2 pack install git@github.com/emedvedev/chatops_tutorial + + # Install your own pack using gitlab URL (added in release 3.4) + st2 pack install gitlab@gitlab.com:example/examplepack By default, the latest release of the pack will be installed, but you can specify a particular version, branch, tag, or even a commit hash. Just use `=`: @@ -133,6 +139,7 @@ version or **upgrade to latest** if the version is not specified. Your config fi overwritten, so you can revert to an older version just as easily, but for production deployments we recommend to always specify versions in case there are major changes in ``latest``. + Pack Dependencies ~~~~~~~~~~~~~~~~~