diff options
| author | dcc <dcc@logografos.com> | 2023-09-02 00:52:52 -0700 |
|---|---|---|
| committer | dcc <dcc@logografos.com> | 2023-09-02 00:52:52 -0700 |
| commit | 3a4773c3c2bd0bbef244eb519b07208da9108e49 (patch) | |
| tree | 973567a6f3abb37bfb0f785b1cad14ed55840ef5 /restarter/mix.exs | |
| download | anni-3a4773c3c2bd0bbef244eb519b07208da9108e49.tar.gz anni-3a4773c3c2bd0bbef244eb519b07208da9108e49.tar.bz2 anni-3a4773c3c2bd0bbef244eb519b07208da9108e49.zip | |
First
Diffstat (limited to 'restarter/mix.exs')
| -rw-r--r-- | restarter/mix.exs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/restarter/mix.exs b/restarter/mix.exs new file mode 100644 index 0000000..4bb9b76 --- /dev/null +++ b/restarter/mix.exs @@ -0,0 +1,22 @@ +defmodule Restarter.MixProject do + use Mix.Project + + def project do + [ + app: :restarter, + version: "0.1.0", + elixir: "~> 1.10", + start_permanent: Mix.env() == :prod, + deps: deps() + ] + end + + def application do + [ + mod: {Restarter, []}, + extra_applications: [:logger] + ] + end + + defp deps, do: [] +end |
