moving restarter application into pleroma repo
This commit is contained in:
parent
7c6e5c541d
commit
91ea3ed82c
4 changed files with 58 additions and 1 deletions
21
restarter/mix .exs
Normal file
21
restarter/mix .exs
Normal file
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue