portal/config/dev.exs
Mikael Hugo 009d644a15 feat: scaffold centralcloud Elixir umbrella (my. + ops. + core)
- Umbrella root with apps/centralcloud_{my,ops,core}
- centralcloud_core: HostBill Admin API client, DR Portal API client
- centralcloud_my: Phoenix LiveView app for my.centralcloud.com
- centralcloud_ops: Phoenix app for ops.centralcloud.com
- Shared config: Authentik OIDC, HostBill, DR Portal endpoints
- README with quick start and required env vars

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-05-09 19:49:01 +02:00

15 lines
364 B
Elixir

import Config
config :centralcloud_my, CentralcloudMy.Endpoint,
code_reloader: true,
debug_errors: true,
check_origin: false,
watchers: []
config :centralcloud_ops, CentralcloudOps.Endpoint,
code_reloader: true,
debug_errors: true,
check_origin: false
config :logger, :console, format: "[$level] $message\n"
config :phoenix, :stacktrace_depth, 20