This repository has been archived on 2023-11-19. You can view files and clone it, but cannot push or open issues or pull requests.
restcrud/mix.exs
2023-06-02 18:41:02 +02:00

34 lines
657 B
Elixir

defmodule Restcrud.MixProject do
use Mix.Project
def project do
[
app: :restcrud,
version: "0.1.0",
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Restcrud.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:plug, "~> 1.14"},
{:plug_cowboy, "~> 2.0"},
# {:poison, "~> 5.0"},
{:jason, "~> 1.4"},
{:ecto_sql, "~> 3.0"},
{:postgrex, "~> 0.17"}
]
end
end