summaryrefslogtreecommitdiff
path: root/restarter/mix.exs
diff options
context:
space:
mode:
authorAlexander Strizhakov <alex.strizhakov@gmail.com>2020-01-28 18:02:11 +0300
committerAlexander Strizhakov <alex.strizhakov@gmail.com>2020-01-28 18:02:11 +0300
commit33bd8fbffea79b8ca510a098ad4654b8f01324d6 (patch)
tree31739759f5148a8c0698d829a480d30f267ac6c6 /restarter/mix.exs
parent93b9f226e0163519b0bbb111191abef45893f23e (diff)
downloadpleroma-33bd8fbffea79b8ca510a098ad4654b8f01324d6.tar.gz
pleroma-33bd8fbffea79b8ca510a098ad4654b8f01324d6.zip
filename and test fixes
Diffstat (limited to 'restarter/mix.exs')
-rw-r--r--restarter/mix.exs21
1 files changed, 21 insertions, 0 deletions
diff --git a/restarter/mix.exs b/restarter/mix.exs
new file mode 100644
index 000000000..b0908aece
--- /dev/null
+++ b/restarter/mix.exs
@@ -0,0 +1,21 @@
+defmodule Restarter.MixProject do
+ use Mix.Project
+
+ def project do
+ [
+ app: :restarter,
+ version: "0.1.0",
+ elixir: "~> 1.8",
+ start_permanent: Mix.env() == :prod,
+ deps: deps()
+ ]
+ end
+
+ def application do
+ [
+ mod: {Restarter, []}
+ ]
+ end
+
+ defp deps, do: []
+end