diff options
author | Simponic <loganhunt@simponic.xyz> | 2022-12-19 01:37:10 -0700 |
---|---|---|
committer | Simponic <loganhunt@simponic.xyz> | 2022-12-19 01:39:10 -0700 |
commit | 9cdfb6eb9cd30c4e06a7d9fef53e519983827d81 (patch) | |
tree | 4622a1809df6a6424f1b5f9f10c72dd02f9fc176 /mix.exs | |
download | chessh-9cdfb6eb9cd30c4e06a7d9fef53e519983827d81.tar.gz chessh-9cdfb6eb9cd30c4e06a7d9fef53e519983827d81.zip |
Initial commit!
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 32 |
1 files changed, 32 insertions, 0 deletions
@@ -0,0 +1,32 @@ +defmodule Chessh.MixProject do + use Mix.Project + + def project do + [ + app: :chessh, + version: "0.1.0", + elixir: "~> 1.14", + start_permanent: Mix.env() == :prod, + deps: deps() + ] + end + + # Run "mix help compile.app" to learn about applications. + def application do + [ + extra_applications: [:esshd, :logger] + ] + end + + # Run "mix help deps" to learn about dependencies. + defp deps do + [ + {:chess, "~> 0.4.1"}, + {:esshd, "~> 0.2.1"}, + {:ecto, "~> 3.9"}, + {:ecto_sql, "~> 3.9"}, + {:postgrex, "~> 0.16.5"}, + {:bcrypt_elixir, "~> 3.0"} + ] + end +end |