restart without ecto

This commit is contained in:
2026-03-16 12:08:09 -06:00
parent 24d9c0ce0f
commit 866326e71d
864 changed files with 942 additions and 432 deletions

View File

@@ -1,15 +1,5 @@
import Config
# Configure your database
config :cobblemon_ui, CobblemonUi.Repo,
username: "postgres",
password: "postgres",
hostname: "localhost",
database: "cobblemon_ui_dev",
stacktrace: true,
show_sensitive_data_on_connection_error: true,
pool_size: 10
# For development, we disable any cache and enable
# debugging and code reloading.
#
@@ -23,7 +13,7 @@ config :cobblemon_ui, CobblemonUiWeb.Endpoint,
check_origin: false,
code_reloader: true,
debug_errors: true,
secret_key_base: "Ri7PsfpT7Pi2WbEgad11Gwsw97YY/K4CfI7d+2jNVOcjPJHV9gWp9SzPM7qc046I",
secret_key_base: "TdD8LGB6e2clyN5NTh63SGVw+szHUzFXPSAWh77XTvdzRvRFX+a2DCBkrL+DJ2oN",
watchers: [
esbuild: {Esbuild, :install_and_run, [:cobblemon_ui, ~w(--sourcemap=inline --watch)]},
tailwind: {Tailwind, :install_and_run, [:cobblemon_ui, ~w(--watch)]}
@@ -87,6 +77,3 @@ config :phoenix_live_view,
debug_attributes: true,
# Enable helpful, but potentially expensive runtime checks
enable_expensive_runtime_checks: true
# Disable swoosh api client as it is only required for production adapters.
config :swoosh, :api_client, false