API-only Phoenix 1.8 project for cloud-ops, inventory, billing, and provisioning sagas. Validates arcadia JWTs via shared Guardian secret (verify-only; arcadia-app remains the issuer). Deps beyond default Phoenix: guardian, cors_plug, oban, req. Postgres on local port 5433 per arcadia stack convention. Endpoint runs on :4005. Endpoints: - GET /api/health — public, returns service identifier - GET /api/v1/inventory — auth-gated, returns empty list (phase 0 stub) Oban configured with the queues phase 1+ will need: provisioning / cloud_sync_fast|full|slow / cloud_billing / metering. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
20 lines
633 B
Elixir
20 lines
633 B
Elixir
import Config
|
|
|
|
# Force using SSL in production. This also sets the "strict-security-transport" header,
|
|
# known as HSTS. If you have a health check endpoint, you may want to exclude it below.
|
|
# Note `:force_ssl` is required to be set at compile-time.
|
|
config :arcadia_cloud, ArcadiaCloudWeb.Endpoint,
|
|
force_ssl: [
|
|
rewrite_on: [:x_forwarded_proto],
|
|
exclude: [
|
|
# paths: ["/health"],
|
|
hosts: ["localhost", "127.0.0.1"]
|
|
]
|
|
]
|
|
|
|
# Do not print debug messages in production
|
|
config :logger, level: :info
|
|
|
|
# Runtime production configuration, including reading
|
|
# of environment variables, is done on config/runtime.exs.
|