This repository was archived by the owner on Jan 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
68 lines (63 loc) · 1.93 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
defmodule MemGpt.MixProject do
use Mix.Project
def project do
[
app: :mem_gpt,
version: "0.1.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps(),
elixirc_paths: elixirc_paths(Mix.env()),
docs: [
main: "MemGpt",
extras: ["README.md"]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
{:doctor, "~> 0.21", only: :dev, runtime: false},
{:drops, "~> 0.1"},
{:ex_check, "~> 0.15", only: :dev, runtime: false},
{:ex_doc, "~> 0.30", only: [:dev, :test], runtime: false},
{:faker, "0.17.0", only: :test},
{:finch, "~> 0.13"},
{:jason, "~> 1.2"},
{:knigge, "~> 1.4"},
{:mix_audit, "~> 2.1", only: :dev, runtime: false},
{:mix_test_interactive, "~> 1.2", only: :dev, runtime: false},
{:mox, "~> 1.1", only: :test},
{:open_ai_client, "~> 1.0"},
{:sobelow, "~> 0.12", only: [:dev, :test], runtime: false},
{:stream_data, "~> 0.6"},
{:typed_struct, "~> 0.3"}
]
end
# Aliases are shortcuts or tasks specific to the current project.
# For example, to install project dependencies and perform other setup tasks, run:
#
# $ mix setup
#
# See the documentation for `Mix` for more info on aliases.
defp aliases do
[
compile: ["compile --warnings-as-errors"],
sobelow: ["sobelow --config"],
dialyzer: ["dialyzer --list-unused-filters"],
credo: ["credo --strict"],
check_formatting: ["format --check-formatted"]
]
end
end