From 604cac69eadad8a0be3c3db9cd0ca8949f95fb0d Mon Sep 17 00:00:00 2001 From: Jason Chow Date: Mon, 16 Mar 2026 11:02:18 -0700 Subject: [PATCH] Remove stale "database" subcommand from AEPsych website docs Summary: **Context:** The AEPsych server CLI was refactored in D42038037 (Dec 2022) to remove the `database` subcommand. The `--db` flag became a direct argument to the main parser. However, the front page of the AEPsych docs site was never updated. **Motivation:** Users copying the server start command from the docs get an error because the `database` subcommand no longer exists. **This diff:** - Remove the stale `database` word from the server start command on the AEPsych website homepage, changing from `aepsych_server --port 5555 --ip 0.0.0.0 database --db mydatabase.db` to `aepsych_server --port 5555 --ip 0.0.0.0 --db mydatabase.db` Differential Revision: D96764511 --- website/pages/en/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/pages/en/index.js b/website/pages/en/index.js index afad9f2d1..90967ae7f 100644 --- a/website/pages/en/index.js +++ b/website/pages/en/index.js @@ -119,7 +119,7 @@ class Index extends React.Component { `; const runServerBlock = `${pre}bash - aepsych_server --port 5555 --ip 0.0.0.0 database --db mydatabase.db + aepsych_server --port 5555 --ip 0.0.0.0 --db mydatabase.db `; const messageTemplateBlock = `${pre}json