From ca8188dab0817acd07cec55ed6837d18b1f132b5 Mon Sep 17 00:00:00 2001 From: Andrew Dixon Date: Tue, 2 Jun 2026 10:04:46 -0700 Subject: [PATCH 1/3] Small Change for Debugging --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a0ef0cd..c0ad79b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # Bootleg +Debug CircleCI [![CircleCI](https://img.shields.io/circleci/project/github/labzero/bootleg/master.svg)](https://circleci.com/gh/labzero/bootleg) [![Hex.pm](https://img.shields.io/hexpm/v/bootleg.svg)](https://hex.pm/packages/bootleg) [![Packagist](https://img.shields.io/packagist/l/doctrine/orm.svg)](https://github.com/labzero/bootleg/blob/master/LICENSE) Simple deployment and server automation for Elixir. From b7e6fe46d17bcd1215ca6b1c70475d7222ee126e Mon Sep 17 00:00:00 2001 From: Andrew Dixon Date: Wed, 3 Jun 2026 10:51:26 -0700 Subject: [PATCH 2/3] Update README for Debugging Added note about rollback. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c0ad79b..7564d1d 100644 --- a/README.md +++ b/README.md @@ -68,13 +68,14 @@ role :app, ["app1.example.com", "app2.example.com"], ``` -### Build, deploy and start your application -Now you can proceed to build, deploy and start your application: +### Build, deploy and start your application +Now you can proceed to build, deploy, start and rollback your application: ``` mix bootleg.build mix bootleg.deploy mix bootleg.start +mix bootleg.rollback ``` This example was for building on a remote build server and deploying to one or more remote application servers, but Bootleg supports several other [build](https://hexdocs.pm/bootleg/config/build.html) and [deployment strategies](https://hexdocs.pm/bootleg/config/deploy.html). From 1e42c2fc5d64ea3d1ba7040b4e30a3d43c025959 Mon Sep 17 00:00:00 2001 From: Andrew Dixon Date: Wed, 3 Jun 2026 10:56:06 -0700 Subject: [PATCH 3/3] Remove Debug Comment --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 7564d1d..396bc7c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ # Bootleg -Debug CircleCI [![CircleCI](https://img.shields.io/circleci/project/github/labzero/bootleg/master.svg)](https://circleci.com/gh/labzero/bootleg) [![Hex.pm](https://img.shields.io/hexpm/v/bootleg.svg)](https://hex.pm/packages/bootleg) [![Packagist](https://img.shields.io/packagist/l/doctrine/orm.svg)](https://github.com/labzero/bootleg/blob/master/LICENSE) Simple deployment and server automation for Elixir.