portal/mix.exs
Mikael Hugo 9f486f36d0 refactor: rename centralcloud_ops → centralcloud_staff in portal
The portal umbrella now has unambiguous app names:
- centralcloud_staff: staff-facing UI (ops.centralcloud.com)
- centralcloud_my:    customer-facing UI (my.centralcloud.com)
- centralcloud_core:  shared library

The infra/apps/centralcloud_ops backend engine retains its name.
Config keys, session cookies, releases all updated accordingly.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-05-11 13:06:21 +02:00

28 lines
657 B
Elixir

defmodule Centralcloud.MixProject do
use Mix.Project
def project do
[
apps_path: "apps",
version: "0.1.0",
start_permanent: Mix.env() == :prod,
deps: deps(),
releases: [
centralcloud_my: [
applications: [centralcloud_core: :permanent, centralcloud_my: :permanent],
overlays: "rel/overlays",
steps: [:assemble, :tar]
],
centralcloud_staff: [
applications: [centralcloud_core: :permanent, centralcloud_staff: :permanent],
overlays: "rel/overlays",
steps: [:assemble, :tar]
]
]
]
end
defp deps do
[]
end
end