Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

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" # <- 16 17[dependencies] # <- 18gleam_stdlib = "~> 1337.0" 19gleam_otp = "~> 1337.0" 20 21[dev_dependencies] # <- 22midas = "~> 1337.0" 23simple_json = "~> 1337.0" 24