summaryrefslogtreecommitdiff
path: root/elixir/mix.exs
diff options
context:
space:
mode:
authorArnaud Bailly <arnaud.bailly@iohk.io>2024-10-11 15:09:29 +0200
committerArnaud Bailly <arnaud.bailly@iohk.io>2024-10-11 15:09:29 +0200
commit3363ab2da764825558c859f4419ff99528ed2274 (patch)
treedb5f1c71a3fe5cea64bc84c34fefe960961d3179 /elixir/mix.exs
parent8094716f7c9a3d9f2886132e7419b377abb97b3b (diff)
downloadlambda-nantes-3363ab2da764825558c859f4419ff99528ed2274.tar.gz
Add elixir code
Diffstat (limited to 'elixir/mix.exs')
-rw-r--r--elixir/mix.exs28
1 files changed, 28 insertions, 0 deletions
diff --git a/elixir/mix.exs b/elixir/mix.exs
new file mode 100644
index 0000000..df46a80
--- /dev/null
+++ b/elixir/mix.exs
@@ -0,0 +1,28 @@
+defmodule Workshop1.MixProject do
+ use Mix.Project
+
+ def project do
+ [
+ app: :workshop1,
+ version: "0.1.0",
+ elixir: "~> 1.17",
+ start_permanent: Mix.env() == :prod,
+ deps: deps()
+ ]
+ end
+
+ # Run "mix help compile.app" to learn about applications.
+ def application do
+ [
+ extra_applications: [:logger]
+ ]
+ end
+
+ # Run "mix help deps" to learn about dependencies.
+ defp deps do
+ [
+ # {:dep_from_hexpm, "~> 0.3.0"},
+ # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
+ ]
+ end
+end