Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Bentix.MixProject do
use Mix.Project
def project do
[
app: :bentix,
version: "0.1.0",
elixir: "~> 1.19",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
name: "Bentix",
source_url: "https://github.com/SushyDev/bentix",
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Bentix.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ecto_sql, "~> 3.13.5"},
{:postgrex, ">= 0.0.0"},
{:plug_cowboy, "~> 2.8"},
{:jason, "~> 1.4"},
{:absinthe, "~> 1.10"},
{:absinthe_plug, "~> 1.5"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp description() do
# "Placeholder for the Bentix project"
"PROPRIETARY SOFTWARE - SEE LICENSE FILE"
end
defp package() do
[
# This option is only needed when you don't want to use the OTP application name
name: "bentix",
# These are the default files included in the package
files: ~w(lib .formatter.exs mix.exs README* LICENSE*),
licenses: [],
links: %{"GitHub" => "https://github.com/SushyDev/bentix"}
]
end
end