Skip to content

Commit f67fcd2

Browse files
author
José Valim
committed
Remove highlights
1 parent ce3f718 commit f67fcd2

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

_posts/2013-05-02-elixir-on-xen.markdown

-7
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,21 @@ Producing an Elixir image using the free Erlang on Xen Build Service requires ju
2424

2525
1. Add a dependency on `lingex` to your `mix.exs` file:
2626

27-
{% highlight elixir %}
2827
def deps do
2928
[ { :lingex, github: "maximk/lingex" } ]
3029
end
31-
{% endhighlight %}
3230

3331
2. Run `mix deps.get` to update your dependencies. This adds a few custom tasks
3432
to the mix tool (`lingex.build`, `lingex.image`, and `lingex.build_image`)
3533

3634
3. Set `lingex` options. Add the following lines to your `mix.exs` file:
3735

38-
{% highlight elixir %}
3936
def project do
4037
[ lingex_opts: [
4138
build_host: "build.erlangonxen.org:8080",
4239
username: "test",
4340
password: "test" ] ]
4441
end
45-
{% endhighlight %}
4642

4743
4. Optionally, you may register with the build service [here](http://build.erlangonxen.org/register) and update the credentials accordingly. For the complete list of recognized options see the build service documentation.
4844

@@ -54,11 +50,8 @@ And this is all. Erlang on Xen is going to boot the Erlang VM and the standard E
5450

5551
1. In the Erlang shell, first start IEx:
5652

57-
{% highlight elixir %}
5853
1> application:start(iex).
5954
ok
60-
{% endhighlight %}
61-
6255

6356
2. Then hit `Ctrl+G`. This will open up the user switch command interface from the Erlang shell.
6457

0 commit comments

Comments
 (0)