Remove ecto repo, add writing to file
This commit is contained in:
parent
386a331956
commit
ce463329f6
20 changed files with 98 additions and 122 deletions
12
mix.exs
12
mix.exs
|
|
@ -42,8 +42,6 @@ defmodule BirdyChat.MixProject do
|
|||
[
|
||||
{:phoenix, "~> 1.8.3"},
|
||||
{:phoenix_ecto, "~> 4.5"},
|
||||
{:ecto_sql, "~> 3.13"},
|
||||
{:postgrex, ">= 0.0.0"},
|
||||
{:phoenix_html, "~> 4.1"},
|
||||
{:phoenix_live_reload, "~> 1.2", only: :dev},
|
||||
{:phoenix_live_view, "~> 1.1.0"},
|
||||
|
|
@ -67,9 +65,12 @@ defmodule BirdyChat.MixProject do
|
|||
{:dns_cluster, "~> 0.2.0"},
|
||||
{:bandit, "~> 1.5"},
|
||||
|
||||
# Phoenix sockets client
|
||||
{:slipstream, "~> 1.0"},
|
||||
|
||||
# Telemetry
|
||||
{:opentelemetry, "~> 1.0"},
|
||||
{:opentelemetry_exporter, "~> 1.0"},
|
||||
{:opentelemetry_exporter, "~> 1.0"}
|
||||
]
|
||||
end
|
||||
|
||||
|
|
@ -81,10 +82,7 @@ defmodule BirdyChat.MixProject do
|
|||
# See the documentation for `Mix` for more info on aliases.
|
||||
defp aliases do
|
||||
[
|
||||
setup: ["deps.get", "ecto.setup", "assets.setup", "assets.build"],
|
||||
"ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
|
||||
"ecto.reset": ["ecto.drop", "ecto.setup"],
|
||||
test: ["ecto.create --quiet", "ecto.migrate --quiet", "test"],
|
||||
setup: ["deps.get", "assets.setup", "assets.build"],
|
||||
"assets.setup": ["tailwind.install --if-missing", "esbuild.install --if-missing"],
|
||||
"assets.build": ["compile", "tailwind birdy_chat", "esbuild birdy_chat"],
|
||||
"assets.deploy": [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue