feat: Add APP_NAME env support for branding and deployment

- Make app name configurable via APP_NAME env variable - Update UI,
HTML, Docker, scripts, and k8s to use APP_NAME - Add process-html.sh for
template substitution - Document APP_NAME usage in
docs/APP_NAME_CONFIGURATION.md - Update Dockerfile, compose, and scripts
for dynamic naming - Add index.html.template for environment-based
branding
This commit is contained in:
William Valentin
2025-09-07 12:21:44 -07:00
parent 46d737ed37
commit 585c526a65
13 changed files with 352 additions and 51 deletions

View File

@@ -1,9 +1,10 @@
{
"name": "rxminder",
"name": "${APP_NAME:-rxminder}",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"predev": "./scripts/process-html.sh",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",