Skip to content
This repository was archived by the owner on Jun 22, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
app_type: next-app
project_key: triarch-dev
firebase_project_id: triarch-dev-website
app_hosting_backend: triarch-dev
app_hosting_backend: admin-prod
dev_backend: admin-dev
prod_url: https://admin.triarch.dev
dev_url: https://admin-dev.triarch.dev
Expand Down
38 changes: 38 additions & 0 deletions apphosting.prod.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# apphosting.prod.yaml — prod environment overlay
# Auto-loaded by Firebase App Hosting when a backend's "Environment Name" is set to "prod"
# (Console: Backend → Settings → Environment). Merged on top of apphosting.yaml.
# Mirrors apphosting.dev.yaml's variable SET with prod values, so the prod backend
# (admin-prod) loads an environment overlay exactly like admin-dev does — required for
# correct serving on a freshly-created backend.
# https://firebase.google.com/docs/app-hosting/multiple-environments

env:
- variable: NEXTAUTH_URL
value: https://admin.triarch.dev
availability:
- BUILD
- RUNTIME

- variable: DEPLOY_WEBHOOK_URL
value: https://admin.triarch.dev/api/webhooks/github-deploy
availability:
- RUNTIME

- variable: DATABASE_URL
secret: DATABASE_URL

- variable: INTERNAL_HMAC_SECRET
secret: INTERNAL_HMAC_SECRET

- variable: CL6_ENFORCEMENT_MODE
value: enforce
availability:
- RUNTIME

- variable: TMI_BASE_URL
value: https://tmiengine.com
availability:
- RUNTIME

- variable: TMI_JOB_SECRET
secret: TMI_JOB_SECRET
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "triarch-dev",
"version": "2.27.0",
"version": "2.27.2",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const APP_VERSION = process.env.NEXT_PUBLIC_APP_VERSION ?? 'v2.27.0';
export const APP_VERSION = process.env.NEXT_PUBLIC_APP_VERSION ?? 'v2.27.2';