💾 Archived View for gemini.rmf-dev.com › repo › Vaati › gmiChat › files › 08ead46cd303c232380a176360… captured on 2023-04-26 at 13:05:30. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-03-20)
-=-=-=-=-=-=-
0 defmodule Gmichat.MixProject do
1 use Mix.Project
2
3 def project do
4 [
5 app: :gmichat,
6 version: "0.1.0",
7 elixir: "~> 1.13",
8 start_permanent: Mix.env() == :prod,
9 deps: deps()
10 ]
11 end
12
13 # Run "mix help compile.app" to learn about applications.
14 def application do
15 [
16 mod: {Gmichat.App, []},
17 extra_applications: [:logger, :ssl]
18 ]
19 end
20
21 # Run "mix help deps" to learn about dependencies.
22 defp deps do
23 [
24 {:ecto_sql, "~> 3.5"},
25 {:ecto_sqlite3, ">= 0.0.0"},
26 {:argon2_elixir, "~> 3.0"}
27 # {:dep_from_hexpm, "~> 0.3.0"},
28 # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
29 ]
30 end
31 end
32