Packages
arke
0.1.12
1.1.33
retired
0.6.3
0.6.2
0.6.1
0.6.0
0.5.0
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.4.0-bulk.1
0.4.0-bulk.0
0.3.17
0.3.16
0.3.15
0.3.14
0.3.13
0.3.12
0.3.11
0.3.10
0.3.9
0.3.8
0.3.7
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.1.38
0.1.37
0.1.36
0.1.35
0.1.34
0.1.33
0.1.32
0.1.31
0.1.30
0.1.29
0.1.28
0.1.27
0.1.26
0.1.25
0.1.24
0.1.23
0.1.22
0.1.21
0.1.20
0.1.19
0.1.18
0.1.17
0.1.16
0.1.15
0.1.14
0.1.13
0.1.12
0.1.11
0.1.10
0.1.9
0.1.8
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Arke low code framework Core
Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Arke.MixProject do
use Mix.Project
@version "0.1.12"
@scm_url "https://github.com/arkemishub/arke"
@site_url "https://arkehub.com"
def project do
[
app: :arke,
name: "Arke",
version: @version,
build_path: "./_build",
deps_path: "./deps",
lockfile: "./mix.lock",
elixir: "~> 1.13",
source_url: @scm_url,
homepage_url: @site_url,
dialyzer: [plt_add_apps: ~w[eex]a],
description: description(),
package: package(),
start_permanent: Mix.env() == :prod,
test_coverage: [tool: ExCoveralls],
aliases: aliases(),
deps: deps(),
elixirc_paths: elixirc_paths(Mix.env()),
elixirc_options: [warnings_as_errors: false]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Arke.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:typed_struct, "~> 0.2.1"},
{:uuid, "~> 1.1"},
{:ex_doc, "~> 0.28", only: :dev, runtime: false},
{:excoveralls, "~> 0.10", only: :test},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:timex, "~> 3.7.11"},
{:google_api_storage, "~> 0.34.0"},
{:goth, "~> 1.3.0"},
{:httpoison, "~> 2.0"}
]
end
defp aliases do
[
test: [
"test"
],
"test.ci": [
"test"
]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp description() do
"Arke low code framework Core"
end
defp package() do
[
# This option is only needed when you don't want to use the OTP application name
name: "arke",
# These are the default files included in the package
licenses: ["Apache-2.0"],
links: %{
"Website" => @site_url,
"Github" => @scm_url
}
]
end
end