You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
role :app, ["web1.example.com", "web2.myapp.com"], user:"admin", workspace:"/var/www/myapp"
69
69
```
70
70
71
+
### Environments
72
+
73
+
Bootleg has its own concept of environments, which is analogous to but different from `MIX_ENV`. Bootleg environments
74
+
are used if you have multiple clusters that you deploy your code to, such as a QA or staging cluster, in addition to
75
+
your `production` cluster. Your main Bootleg config still goes in `config/deploy.exs`, and environment specific details
76
+
goes in `config/deploy/your_bootleg_env.exs`. The selected environment config file gets loaded immediately after
77
+
`config/deploy.exs`. To invoke a Bootleg command with a specific environment, simply pass it as the first argument to
78
+
any bootleg Mix command.
79
+
80
+
For example, say you have both a `production` and a `staging` cluster. Your configuration might look like:
81
+
82
+
```elixir
83
+
# config/deploy.exs
84
+
useBootleg.Config
85
+
86
+
task :my_nifty_thingdo
87
+
Some.jazz()
88
+
end
89
+
90
+
after_task :deploy, :my_nifty_thing
91
+
92
+
role :build, "build.example.com", user, "build", port:"2222", workspace:"/tmp/build/myapp"
93
+
```
94
+
95
+
```elixir
96
+
# config/deploy/production.exs
97
+
useBootleg.Config
98
+
99
+
role :app, ["web1.example.com", "web2.example.com"], user:"admin", workspace:"/var/www/myapp"
100
+
```
101
+
102
+
```elixir
103
+
# config/deploy/staging.exs
104
+
useBootleg.Config
105
+
106
+
role :app, ["stage1.example.com", "stage2.example.com"], user:"admin", workspace:"/var/www/myapp"
107
+
```
108
+
109
+
110
+
Then if you wanted to update staging, you would `mix bootleg.update staging`. If you wanted to update production,
111
+
it would be `mix bootleg.update production`, or just `mix bootleg.update` (the default environment is `production`).
112
+
113
+
It is not a requirement that you define an environment file for each environment, but you will get a warning if
114
+
a specific environment file can't be found. It is strongly encouraged to have an environment file per environment.
115
+
116
+
71
117
## Roles
72
118
73
119
Actions in Bootleg are paired with roles, which are simply a collection of hosts that are responsible for the same function, for example building a release, archiving a release, or executing commands against a running application.
@@ -135,7 +181,7 @@ Bootleg extensions may impose restrictions on certain roles, such as restricting
135
181
136
182
*`build` - Takes only one host. If a list is given, only the first hosts is
137
183
used and a warning may result. If this role isn't set the release packaging will be done locally.
138
-
*`app` - Takes a lists of hosts, or a string with one host.
184
+
*`app` - Takes a list of hosts, or a string with one host.
139
185
140
186
## Building and deploying a release
141
187
@@ -154,6 +200,14 @@ mix bootleg.update production
154
200
Note that `bootleg.update` will stop any running nodes and then perform a cold start. The stop is performed with
155
201
the task `stop_silent`, which differs from `stop` in that it does not fail if the node is already stopped.
156
202
203
+
`bootleg.build` will clean the remote workspace prior to copying the code over, to ensure that any files left from
204
+
a previous build do not cause issues. The entire contents of the remote workspace are removed via `rm -rf *` from
205
+
the root of the workspace. You can configure this behavior by setting the config option `clean_locations`, which
206
+
takes a list of locations and passes them to `rm -rf` on the remote server. Relative paths will be interpreted relative
207
+
to the workspace, absolute paths will be treated as is. Warning: this means that `config :clean_locations, ["/"]` would
208
+
attempt to erase the entire root file system of your remote server. Be careful when altering `clean_locations` and never
209
+
use a privileged user on your build server.
210
+
157
211
## Admin Commands
158
212
159
213
Bootleg has a set of commands to check up on your running nodes:
@@ -183,8 +237,9 @@ Hooks are defined within `config/deploy.exs`. Hooks may be defined to trigger
183
237
before or after a task. The following tasks are provided by Bootleg:
184
238
185
239
1.`build` - build process for creating a release package
186
-
1.`compile` - compilation of your project
187
-
2.`generate_release` - generation of the release package
240
+
1.`clean` - cleans the remote workspace
241
+
2.`compile` - compilation of your project
242
+
3.`generate_release` - generation of the release package
188
243
2.`deploy` - deploy of a release package
189
244
3.`start` - starting of a release
190
245
4.`stop` - stopping of a release
@@ -344,7 +399,7 @@ for building phoenix releases.
344
399
# mix.exs
345
400
defdepsdo
346
401
[{:distillery, "~> 1.3"},
347
-
{:bootleg, "~> 0.3"},
402
+
{:bootleg, "~> 0.4"},
348
403
{:bootleg_phoenix, "~> 0.1"}]
349
404
end
350
405
```
@@ -353,7 +408,7 @@ For more about `bootleg_phoenix` see: https://github.com/labzero/bootleg_phoenix
353
408
354
409
## Sharing Tasks
355
410
356
-
Sharing is a good thing. We love to share, espically awesome code we write. Bootleg supports loading
411
+
Sharing is a good thing. We love to share, especially awesome code we write. Bootleg supports loading
357
412
tasks from packages in a manner very similar to `Mix.Task`. Just define your module under `Bootleg.Tasks`,
358
413
`use Bootleg.Task` and pass it a block of Bootleg DSL. The contents will be discovered and executed
0 commit comments