Packages
ecto_adapters_dynamodb
2.0.4
3.6.1
3.6.0
3.5.0
3.4.1
3.4.0
3.3.7
3.3.6
3.3.5
3.3.4
3.3.3
3.3.2
3.3.1
3.3.0
3.2.0
3.1.3
3.1.2
3.1.1
3.1.0
3.0.3
3.0.2
3.0.1
3.0.0
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
2.0.0-beta.1
2.0.0-beta.0
2.0.0-alpha.4
2.0.0-alpha.3
2.0.0-alpha.2
2.0.0-alpha.1
2.0.0-alpha.0
1.3.0
1.2.1
1.2.0
1.1.3
0.5.1
0.5.0
0.4.6
0.4.5
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
0.2.3
0.2.2
0.2.1
0.1.2
0.1.1
A DynamoDB adapter for Ecto supporting basic queries. See https://github.com/circles-learning-labs/ecto_adapters_dynamodb for detailed instructions.
Current section
Files
Jump to
Current section
Files
ecto_adapters_dynamodb
mix.exs
mix.exs
defmodule Ecto.Adapters.DynamoDB.Mixfile do
use Mix.Project
def project do
[
app: :ecto_adapters_dynamodb,
version: "2.0.4",
elixir: "~> 1.7",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
dialyzer: [plt_add_apps: [:ecto]],
docs: [main: "readme", extras: ["README.md"]],
description:
"A DynamoDB adapter for Ecto supporting basic queries. See https://github.com/circles-learning-labs/ecto_adapters_dynamodb for detailed instructions.",
package: package(),
source_url: "https://github.com/circles-learning-labs/ecto_adapters_dynamodb"
]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
# Specify extra applications you'll use from Erlang/Elixir
[
extra_applications: [:logger],
mod: {Ecto.Adapters.DynamoDB.Application, []},
env: [
cached_tables: [],
insert_nil_fields: true,
dynamodb_local: false,
log_levels: [:info],
log_colours: %{info: :green, debug: :normal},
log_in_colour: System.get_env("MIX_ENV") == "dev",
log_path: "",
remove_nil_fields_on_update: false,
scan_all: false,
scan_limit: 100,
scan_tables: []
]
]
end
# Dependencies can be Hex packages:
#
# {:my_dep, "~> 0.3.0"}
#
# Or git/path repositories:
#
# {:my_dep, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
#
# Type "mix help deps" for more examples and options
defp deps do
[
{:ecto_sql, "~> 3.4"},
{:ex_aws_dynamo, "~> 3.0"},
{:jason, "~> 1.0"},
{:hackney, "~> 1.6"},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:eqc_ex, "~> 1.4.2", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.23.0", only: :dev, runtime: false}
]
end
defp package do
[
# files: ["lib", "priv", "mix.exs", "README*", "readme*", "LICENSE*", "license*"],
maintainers: ["Franko Franicevich", "Darren Klein", "Gilad Barkan", "Nick Marino"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/circles-learning-labs/ecto_adapters_dynamodb"}
]
end
end