Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
313B

  1. defmodule Restarter.MixProject do
  2. use Mix.Project
  3. def project do
  4. [
  5. app: :restarter,
  6. version: "0.1.0",
  7. elixir: "~> 1.8",
  8. start_permanent: Mix.env() == :prod,
  9. deps: deps()
  10. ]
  11. end
  12. def application do
  13. [
  14. mod: {Restarter, []}
  15. ]
  16. end
  17. defp deps, do: []
  18. end