mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-23 07:06:07 +00:00
25 lines
383 B
Markdown
25 lines
383 B
Markdown
# gleam_rebar3
|
|
|
|
A Gleam project
|
|
|
|
## Quick start
|
|
|
|
```sh
|
|
# Run the eunit tests
|
|
rebar3 eunit
|
|
|
|
# Run the Erlang REPL
|
|
rebar3 shell
|
|
```
|
|
|
|
## Installation
|
|
|
|
If [available in Hex](https://rebar3.org/docs/configuration/dependencies/#declaring-dependencies)
|
|
this package can be installed by adding `gleam_rebar3` to your `rebar.config` dependencies:
|
|
|
|
```erlang
|
|
{deps, [
|
|
gleam_rebar3
|
|
]}.
|
|
```
|