Fork of daniellemaywood.uk/gleam — Wasm codegen work
617 B
25 lines
1# SPDX-License-Identifier: Apache-2.0
2# SPDX-FileCopyrightText: 2022 The Gleam contributors
3
4# This config file has a bunch of properties that will be entered into the
5# Erlang .app file
6
7name = "my_erlang_application" # <-
8version = "0.1.0" # <-
9description = "It's very cool" # <-
10
11target = "erlang"
12
13[erlang]
14extra_applications = ["inets", "ssl"] # <-
15application_start_module = "my_erlang_application_sup" # <-
16application_start_argument = "[1, two]" # <-
17
18[dependencies] # <-
19gleam_stdlib = "~> 1337.0"
20gleam_otp = "~> 1337.0"
21
22[dev_dependencies] # <-
23midas = "~> 1337.0"
24simple_json = "~> 1337.0"
25