logo

adventofcode

Unnamed repository; edit this file 'description' to name the repository.
commit: d675347e2effd644a14990b7842704ef47070930
parent: bbff1e6aaf0d715b6db384fa80e94dcb559bc855
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Mon,  2 Dec 2019 12:11:41 +0100

Init Elixir

Diffstat:

A.formatter.exs4++++
A.gitignore7+++++++
Aconfig/config.exs1+
Amix.exs21+++++++++++++++++++++
4 files changed, 33 insertions(+), 0 deletions(-)

diff --git a/.formatter.exs b/.formatter.exs @@ -0,0 +1,4 @@ +# Used by "mix format" +[ + inputs: ["{mix,.formatter}.exs", "{config,lib,scripts}/**/*.{ex,exs}"] +] diff --git a/.gitignore b/.gitignore @@ -0,0 +1,7 @@ +/_build/ +/cover/ +/deps/ +/doc/ +/.fetch +erl_crash.dump +*.ez diff --git a/config/config.exs b/config/config.exs @@ -0,0 +1 @@ +use Mix.Config diff --git a/mix.exs b/mix.exs @@ -0,0 +1,21 @@ +defmodule Adventofcode.MixProject do + use Mix.Project + + def project do + [ + app: :adventofcode, + version: "0.1.0", + elixir: "~> 1.8", + start_permanent: Mix.env() == :prod, + deps: deps() + ] + end + + def application do + [] + end + + defp deps do + [] + end +end