Packages
graphqexl
0.1.0
0.1.0
0.1.0-alpha-rc.docs-test-6
0.1.0-alpha-rc.docs-test-5
0.1.0-alpha-rc.docs-test-4
0.1.0-alpha-rc.docs-test-3
0.1.0-alpha-rc.docs-test-2
0.1.0-alpha-rc.docs-test
0.1.0-alpha-rc.25
0.1.0-alpha-rc.24
0.1.0-alpha-rc.23
0.1.0-alpha-rc.22
0.1.0-alpha-rc.21
0.1.0-alpha-rc.20
0.1.0-alpha-rc.19
0.1.0-alpha-rc.18
0.1.0-alpha-rc.17
0.1.0-alpha-rc.16
0.1.0-alpha-rc.15
0.1.0-alpha-rc.14
0.1.0-alpha-rc.13
0.1.0-alpha-rc.12
0.1.0-alpha-rc.11
0.1.0-alpha-rc.10
0.1.0-alpha-rc.9
0.1.0-alpha-rc.8
0.1.0-alpha-rc.7
0.1.0-alpha-rc.6
0.1.0-alpha-rc.5
0.1.0-alpha-rc.4
0.1.0-alpha-rc.3
0.1.0-alpha-rc.2
0.1.0-alpha-rc.1
0.1.0-alpha.rc-4
0.1.0-alpha.rc.4
Fully-loaded, pure-Elixir GraphQL server implementation with developer tools
Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Graphqexl.MixProject do
use Mix.Project
@version '0.1.0'
def project do
[
app: :graphqexl,
version: @version |> to_string,
elixir: "~> 1.9",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:gettext] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps(),
releases: [
stable: [
include_executables_for: [:unix],
applications: [graphqexl: :permanent, runtime_tools: :permanent],
],
],
description: "Fully-loaded, pure-Elixir GraphQL server implementation with developer tools",
package: %{
files: [
"config",
"lib",
"priv",
"mix.exs",
"README*",
"LICENSE*"
],
licenses: ["MIT"],
links: %{
repo: "https://github.com/eslingerbryan/graphqexl",
graphql: "https://graphql.org/"
}
},
]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[
description: 'Fully-loaded, pure-Elixir GraphQL server implementation with developer tools',
mod: {Graphqexl.Application, []},
extra_applications: [:logger, :runtime_tools],
vsn: @version,
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:authex, "~> 2.0"},
{:credo, "~> 1.1.0", only: [:dev, :test], runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:gettext, "~> 0.11"},
{:inflex, "~> 2.0.0"},
{:jason, "~> 1.0"},
]
end
# Aliases are shortcuts or tasks specific to the current project.
# For example, to create, migrate and run the seeds file at once:
#
# $ mix ecto.setup
#
# See the documentation for `Mix` for more info on aliases.
defp aliases do
[]
end
end