Skip to content

Commit e01a5ae

Browse files
JasonKChowmeta-codesync[bot]
authored andcommitted
Remove stale "database" subcommand from AEPsych website docs (#833)
Summary: Pull Request resolved: #833 **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` Reviewed By: tymmsc Differential Revision: D96764511 fbshipit-source-id: aacb8a366adbf9b95b7b7fb78c8b64c74c865b90
1 parent 5b48bdd commit e01a5ae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

website/pages/en/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class Index extends React.Component {
119119
`;
120120

121121
const runServerBlock = `${pre}bash
122-
aepsych_server --port 5555 --ip 0.0.0.0 database --db mydatabase.db
122+
aepsych_server --port 5555 --ip 0.0.0.0 --db mydatabase.db
123123
`;
124124

125125
const messageTemplateBlock = `${pre}json

0 commit comments

Comments
 (0)