summaryrefslogtreecommitdiffstats
path: root/docs/en/erlang.mk/1/guide/shell.asciidoc
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2019-07-18 09:59:28 +0200
committerLoïc Hoguin <[email protected]>2019-07-18 10:08:46 +0200
commit136d443b5c38bee96f5d995dfea3629ef07564c3 (patch)
tree1d31540baebc43ca0b2dceeda212c44f5da7e7a8 /docs/en/erlang.mk/1/guide/shell.asciidoc
parente031713c0e8bd871248dbbbbdec1ea28609f4431 (diff)
downloadninenines.eu-136d443b5c38bee96f5d995dfea3629ef07564c3.tar.gz
ninenines.eu-136d443b5c38bee96f5d995dfea3629ef07564c3.tar.bz2
ninenines.eu-136d443b5c38bee96f5d995dfea3629ef07564c3.zip
Announce Ranch 2.0.0-rc.1
Adds Ranch 2.0 documentation and removes documentation for very old Cowboy and Ranch, along with Erlang.mk documentation which is available on its own website.
Diffstat (limited to 'docs/en/erlang.mk/1/guide/shell.asciidoc')
-rw-r--r--docs/en/erlang.mk/1/guide/shell.asciidoc50
1 files changed, 0 insertions, 50 deletions
diff --git a/docs/en/erlang.mk/1/guide/shell.asciidoc b/docs/en/erlang.mk/1/guide/shell.asciidoc
deleted file mode 100644
index 5484b9df..00000000
--- a/docs/en/erlang.mk/1/guide/shell.asciidoc
+++ /dev/null
@@ -1,50 +0,0 @@
-[[shell]]
-== Erlang shell
-
-Erlang.mk provides a convenient target for starting a shell
-with all the paths set properly to experiment with your code.
-
-=== Configuration
-
-The `SHELL_DEPS` variable can be used to define dependencies
-that are only to be used when the `make shell` command is called.
-For example, if you want to use _kjell_ as your shell:
-
-[source,make]
-SHELL_DEPS = kjell
-
-Dependencies are downloaded and compiled the first time you
-run the `make shell` command.
-
-You can customize the executable used to start the Erlang shell.
-To continue with our example, if you want to use _kjell_ as your
-shell, you also need to change `SHELL_ERL` and point it to the
-`kjell` executable:
-
-[source,make]
-SHELL_ERL = $(DEPS_DIR)/kjell/bin/kjell
-
-You can specify additional options to be used when starting the
-shell using the `SHELL_OPTS` variable:
-
-[source,make]
-SHELL_OPTS = -setcookie chocolate
-
-Any of the usual `erl` options can be used, including `-eval`:
-
-[source,make]
-SHELL_OPTS = -eval 'my_app:run()'
-
-=== Usage
-
-To start the shell, all you need is the following command:
-
-[source,bash]
-$ make shell
-
-The shell can be stopped as usual with a double Ctrl+C or the
-command `q().`.
-
-Note that the `shell` target does not build the application. To do it,
-use either the `app` target or, if you want to include also test
-modules, the `test-build` target. \ No newline at end of file