From 2acc0eeee1388f99b706d0ead1c5dd2005a49ac9 Mon Sep 17 00:00:00 2001 From: Rob Watson Date: Sat, 7 Apr 2018 09:41:03 +0200 Subject: [PATCH] Vanilla Elixir app --- .formatter.exs | 4 ++++ .gitignore | 24 ++++++++++++++++++++++++ README.md | 21 +++++++++++++++++++++ config/config.exs | 30 ++++++++++++++++++++++++++++++ lib/amazon_history.ex | 18 ++++++++++++++++++ mix.exs | 28 ++++++++++++++++++++++++++++ test/amazon_history_test.exs | 8 ++++++++ test/test_helper.exs | 1 + 8 files changed, 134 insertions(+) create mode 100644 .formatter.exs create mode 100644 .gitignore create mode 100644 README.md create mode 100644 config/config.exs create mode 100644 lib/amazon_history.ex create mode 100644 mix.exs create mode 100644 test/amazon_history_test.exs create mode 100644 test/test_helper.exs diff --git a/.formatter.exs b/.formatter.exs new file mode 100644 index 0000000..525446d --- /dev/null +++ b/.formatter.exs @@ -0,0 +1,4 @@ +# Used by "mix format" +[ + inputs: ["mix.exs", "{config,lib,test}/**/*.{ex,exs}"] +] diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ced1614 --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# The directory Mix will write compiled artifacts to. +/_build/ + +# If you run "mix test --cover", coverage assets end up here. +/cover/ + +# The directory Mix downloads your dependencies sources to. +/deps/ + +# Where 3rd-party dependencies like ExDoc output generated docs. +/doc/ + +# Ignore .fetch files in case you like to edit your project deps locally. +/.fetch + +# If the VM crashes, it generates a dump, let's ignore it too. +erl_crash.dump + +# Also ignore archive artifacts (built via "mix archive.build"). +*.ez + +# Ignore package tarball (built via "mix hex.build"). +amazon_history-*.tar + diff --git a/README.md b/README.md new file mode 100644 index 0000000..44744b0 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# AmazonHistory + +**TODO: Add description** + +## Installation + +If [available in Hex](https://hex.pm/docs/publish), the package can be installed +by adding `amazon_history` to your list of dependencies in `mix.exs`: + +```elixir +def deps do + [ + {:amazon_history, "~> 0.1.0"} + ] +end +``` + +Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc) +and published on [HexDocs](https://hexdocs.pm). Once published, the docs can +be found at [https://hexdocs.pm/amazon_history](https://hexdocs.pm/amazon_history). + diff --git a/config/config.exs b/config/config.exs new file mode 100644 index 0000000..4d6b7eb --- /dev/null +++ b/config/config.exs @@ -0,0 +1,30 @@ +# This file is responsible for configuring your application +# and its dependencies with the aid of the Mix.Config module. +use Mix.Config + +# This configuration is loaded before any dependency and is restricted +# to this project. If another project depends on this project, this +# file won't be loaded nor affect the parent project. For this reason, +# if you want to provide default values for your application for +# 3rd-party users, it should be done in your "mix.exs" file. + +# You can configure your application as: +# +# config :amazon_history, key: :value +# +# and access this configuration in your application as: +# +# Application.get_env(:amazon_history, :key) +# +# You can also configure a 3rd-party app: +# +# config :logger, level: :info +# + +# It is also possible to import configuration files, relative to this +# directory. For example, you can emulate configuration per environment +# by uncommenting the line below and defining dev.exs, test.exs and such. +# Configuration from the imported file will override the ones defined +# here (which is why it is important to import them last). +# +# import_config "#{Mix.env}.exs" diff --git a/lib/amazon_history.ex b/lib/amazon_history.ex new file mode 100644 index 0000000..9a54f82 --- /dev/null +++ b/lib/amazon_history.ex @@ -0,0 +1,18 @@ +defmodule AmazonHistory do + @moduledoc """ + Documentation for AmazonHistory. + """ + + @doc """ + Hello world. + + ## Examples + + iex> AmazonHistory.hello + :world + + """ + def hello do + :world + end +end diff --git a/mix.exs b/mix.exs new file mode 100644 index 0000000..9375296 --- /dev/null +++ b/mix.exs @@ -0,0 +1,28 @@ +defmodule AmazonHistory.MixProject do + use Mix.Project + + def project do + [ + app: :amazon_history, + version: "0.1.0", + elixir: "~> 1.6", + start_permanent: Mix.env() == :prod, + deps: deps() + ] + end + + # Run "mix help compile.app" to learn about applications. + def application do + [ + extra_applications: [:logger] + ] + end + + # Run "mix help deps" to learn about dependencies. + defp deps do + [ + # {:dep_from_hexpm, "~> 0.3.0"}, + # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}, + ] + end +end diff --git a/test/amazon_history_test.exs b/test/amazon_history_test.exs new file mode 100644 index 0000000..39467ef --- /dev/null +++ b/test/amazon_history_test.exs @@ -0,0 +1,8 @@ +defmodule AmazonHistoryTest do + use ExUnit.Case + doctest AmazonHistory + + test "greets the world" do + assert AmazonHistory.hello() == :world + end +end diff --git a/test/test_helper.exs b/test/test_helper.exs new file mode 100644 index 0000000..869559e --- /dev/null +++ b/test/test_helper.exs @@ -0,0 +1 @@ +ExUnit.start()