Packages
dynamo_datamapper
0.1.0
Library for manipulating data from dynamo db, this library its similar to odm from mongo, but to manipulate data easiest, based in Aws Dynamo library.
Current section
Files
Jump to
Current section
Files
dynamo_datamapper
mix.exs
mix.exs
defmodule DataMapper.MixProject do
use Mix.Project
def project do
[
app: :data_mapper,
version: "0.1.0",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
name: "Dynamo datamapper",
source_url: "https://github.com/phalcondroid/data_mapper"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
#mod: { DataMapper, [] },
extra_applications: [
:logger,
:ex_aws,
:ex_aws_dynamo,
:poison,
:hackney
]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_aws, "~> 2.0"},
{:ex_aws_dynamo, "~> 2.0"},
{:poison, "~> 3.0"},
{:hackney, "~> 1.9"},
{:ex_doc, "~> 0.19", only: :dev, 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
defp description do
"
Library for manipulating data from dynamo db, this library its similar to odm from mongo,
but to manipulate data easiest, based in Aws Dynamo library.
"
end
defp package do
[
name: "dynamo_datamapper",
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Julian Molina"],
licenses: ["CC0-1.0"],
links: %{"GitHub" => "https://github.com/phalcondroid/data_mapper"}
]
end
end