aboutsummaryrefslogtreecommitdiffstats
path: root/index.md
blob: fed12175e59e1602fff9b6797fbbf6b4acf5f356 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
layout: default
title: Relx by erlware
---

Relx assembles releases for an Erlang/OTP release. Given a release specification and a list of directories in which to search for OTP applications it will generate a release output. That output depends heavily on what plugins available and what options are defined, but usually it is simple a well configured release directory.

## Example Configuration

{% highlight bash %}
$ git clone https://github.com/tsloughter/erlangdc2013.git
$ cd erlangdc2013
$ cat relx.config
{release, {erlangdc, "0.0.1"},
 [estatsd
 ,erlangdc]}.
{extended_start_script, true}.

$ ./relx
...
$ ls _rel/
bin  erts-5.10.1  lib  log  releases
{% endhighlight %}

### Documentation

* [wiki](http://github.com/erlware/relx/wiki)