Fix statelessness

This commit is contained in:
Philip Peterson 2026-05-28 18:14:59 -07:00
parent d98f9a9efd
commit 8c5ce93d79
4 changed files with 4 additions and 3 deletions

View file

@ -1,4 +1,4 @@
# Riverside Therapeutics — Project Context
# Riverside Physical Therapy — Project Context
## What this is

View file

@ -1,4 +1,4 @@
# Riverside Patient Tracker
# Riverside Physical Therapy
A Drupal-based appointment scheduling site for booking sessions between patients and practitioners.

View file

@ -10,7 +10,7 @@ services:
DB_NAME: drupal
DB_USER: drupal
DB_PASS: drupal
SITE_NAME: "Riverside Therapeutics"
SITE_NAME: "Riverside Physical Therapy"
ADMIN_PASS: "${ADMIN_PASS:?ADMIN_PASS is required}"
HASH_SALT: "${HASH_SALT:?HASH_SALT is required}"
DEBUG: "${DEBUG:-true}"

View file

@ -191,6 +191,7 @@ function _riverside_pt_rebuild(): void {
}
\Drupal::configFactory()->getEditable('system.site')
->set('name', 'Riverside Physical Therapy')
->set('page.front', '/home')
->save();
}