refactor: rename project to MedAssist-ng and update configurations
- Updated environment variables in .env.example for production setup. - Changed project references from MedAssist to MedAssist-ng in documentation and code. - Adjusted Docker configurations for new image names and ports. - Removed deprecated push-images.sh script and added docker-compose.dev.yml for development. - Updated translation files to reflect new project name. - Ensured all email notifications and headers reflect the new branding.
This commit is contained in:
@@ -575,7 +575,7 @@ export default function App() {
|
||||
<main className="page">
|
||||
<header className="hero">
|
||||
<div className="hero-title">
|
||||
<img src="/favicon.svg" alt="MedAssist" className="hero-logo" />
|
||||
<img src="/favicon.svg" alt="MedAssist-ng" className="hero-logo" />
|
||||
<div>
|
||||
<p className="eyebrow">{pageInfo.eyebrow}</p>
|
||||
<h1>{pageInfo.title}</h1>
|
||||
@@ -1640,7 +1640,7 @@ function generateICS(med: Medication) {
|
||||
].filter(Boolean).join('\\n');
|
||||
|
||||
return `BEGIN:VEVENT
|
||||
UID:medassist-${med.id}-${idx}@medassist
|
||||
UID:medassist-ng-${med.id}-${idx}@medassist-ng
|
||||
DTSTAMP:${formatICSDate(new Date())}
|
||||
DTSTART:${formatICSDate(start)}
|
||||
DTEND:${formatICSDate(end)}
|
||||
@@ -1657,7 +1657,7 @@ END:VEVENT`;
|
||||
|
||||
const ics = `BEGIN:VCALENDAR
|
||||
VERSION:2.0
|
||||
PRODID:-//MedAssist//Medication Schedule//EN
|
||||
PRODID:-//MedAssist-ng//Medication Schedule//EN
|
||||
CALSCALE:GREGORIAN
|
||||
METHOD:PUBLISH
|
||||
X-WR-CALNAME:${med.name} Schedule
|
||||
|
||||
@@ -8,11 +8,11 @@
|
||||
},
|
||||
"header": {
|
||||
"eyebrow": {
|
||||
"overview": "MedAssist · Übersicht",
|
||||
"inventory": "MedAssist · Inventar",
|
||||
"planner": "MedAssist · Planer",
|
||||
"settings": "MedAssist · Einstellungen",
|
||||
"schedule": "MedAssist · Zeitplan"
|
||||
"overview": "MedAssist-ng · Übersicht",
|
||||
"inventory": "MedAssist-ng · Inventar",
|
||||
"planner": "MedAssist-ng · Planer",
|
||||
"settings": "MedAssist-ng · Einstellungen",
|
||||
"schedule": "MedAssist-ng · Zeitplan"
|
||||
}
|
||||
},
|
||||
"dashboard": {
|
||||
|
||||
@@ -8,11 +8,11 @@
|
||||
},
|
||||
"header": {
|
||||
"eyebrow": {
|
||||
"overview": "MedAssist · Overview",
|
||||
"inventory": "MedAssist · Inventory",
|
||||
"planner": "MedAssist · Planner",
|
||||
"settings": "MedAssist · Configuration",
|
||||
"schedule": "MedAssist · Schedule"
|
||||
"overview": "MedAssist-ng · Overview",
|
||||
"inventory": "MedAssist-ng · Inventory",
|
||||
"planner": "MedAssist-ng · Planner",
|
||||
"settings": "MedAssist-ng · Configuration",
|
||||
"schedule": "MedAssist-ng · Schedule"
|
||||
}
|
||||
},
|
||||
"dashboard": {
|
||||
|
||||
@@ -23,7 +23,7 @@ i18n
|
||||
detection: {
|
||||
order: ['localStorage', 'navigator'],
|
||||
caches: ['localStorage'],
|
||||
lookupLocalStorage: 'medassist-language',
|
||||
lookupLocalStorage: 'medassist-ng-language',
|
||||
},
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user