Packages
journey
0.10.39
0.10.58
0.10.57
0.10.56
0.10.55
0.10.54
0.10.53
0.10.52
0.10.51
0.10.50
0.10.49
0.10.48
0.10.47
0.10.46
0.10.45
0.10.44
0.10.43
0.10.41
0.10.40
0.10.39
0.10.38
0.10.37
0.10.36
0.10.35
0.10.34
0.10.33
0.10.32
0.10.31
0.10.30
0.10.29
0.10.28
0.10.27
0.10.26
0.10.25
0.10.24
0.10.23
0.10.22
0.0.9
retired
0.0.8
0.0.7
0.0.6
0.0.5
0.0.3
0.0.2
Journey is a library for defining and running durable workflows with persistence, reliability, and scalability.
Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Journey.MixProject do
use Mix.Project
@version "0.10.39"
def project do
[
app: :journey,
version: @version,
elixir: "~> 1.18",
elixirc_paths: elixirc_paths(Mix.env()),
package: package(),
start_permanent: Mix.env() == :prod,
name: "Journey",
docs: [
main: "readme",
extras: [
"README.md",
"BASIC_CONCEPTS.md",
"MODULES_AND_FUNCTIONS.md",
"LICENSE.md",
"CHANGELOG.md",
"MIGRATION_STRATEGY.md"
],
groups_for_docs: [
"Graph Management": &(&1[:group] == "Graph Management"),
"Execution Lifecycle": &(&1[:group] == "Execution Lifecycle"),
"Value Operations": &(&1[:group] == "Value Operations"),
"Data Retrieval": &(&1[:group] == "Data Retrieval"),
Deprecated: &(&1[:group] == "Deprecated")
]
],
test_coverage: [
summary: [
threshold: 81
]
],
deps: deps()
]
end
def package do
[
name: "journey",
description:
"Journey is a library for defining and running self-computing dataflow graphs with persistence, reliability, and scalability.",
licenses: ["Journey License"],
links: %{
"GitHub" => "https://github.com/markmark206/journey",
"License" => "https://github.com/markmark206/journey/blob/v#{@version}/LICENSE.md",
"About" => "https://gojourney.dev"
}
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Journey.Application, []}
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test_load", "test/support"]
defp elixirc_paths(_), do: ["lib", "test_load"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, "~> 1.7.12", only: [:dev, :test], runtime: false},
{:ecto, "~> 3.12 or ~> 3.13"},
{:ecto_sql, "~> 3.12 or ~> 3.13"},
{:ex_doc, "~> 0.38 or ~> 0.39", only: :dev, runtime: false},
{:keyword_validator, "~> 2.1.0"},
{:mix_test_watch, "~> 1.3", only: [:dev, :test], runtime: false},
{:nanoid, "~> 2.1.0"},
{:number, "~> 1.0.5"},
{:parent, "~> 0.12.1"},
{:postgrex, "~> 0.20 or ~> 0.21"},
{:wait_for_it, "~> 2.1", only: [:dev, :test], runtime: false}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end