From a1e04f72fc84b76db1f55a2cbb8818abd3efb589 Mon Sep 17 00:00:00 2001 From: chengfangyin2 Date: Fri, 8 Dec 2023 08:24:22 +0800 Subject: [PATCH] docs: Modify start script --- docker/allinone/allinone-entrypoint.sh | 2 +- docs/docs/installation/sourcecode.md | 2 +- docs/docs/quickstart.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/allinone/allinone-entrypoint.sh b/docker/allinone/allinone-entrypoint.sh index d061d8d60..bb2ec9866 100755 --- a/docker/allinone/allinone-entrypoint.sh +++ b/docker/allinone/allinone-entrypoint.sh @@ -14,4 +14,4 @@ ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY '$MYSQL_ROOT_PASS FLUSH PRIVILEGES; " -python3 pilot/server/dbgpt_server.py \ No newline at end of file +python3 dbgpt/app/dbgpt_server.py \ No newline at end of file diff --git a/docs/docs/installation/sourcecode.md b/docs/docs/installation/sourcecode.md index 0d1df1f8f..4ea318b1f 100644 --- a/docs/docs/installation/sourcecode.md +++ b/docs/docs/installation/sourcecode.md @@ -373,7 +373,7 @@ bash ./scripts/examples/load_examples.sh ## Run service The DB-GPT service is packaged into a server, and the entire DB-GPT service can be started through the following command. ```python -python pilot/server/dbgpt_server.py +python dbgpt/app/dbgpt_server.py ``` ## Visit website diff --git a/docs/docs/quickstart.md b/docs/docs/quickstart.md index 07edb1fb2..79822928f 100644 --- a/docs/docs/quickstart.md +++ b/docs/docs/quickstart.md @@ -152,7 +152,7 @@ bash ./scripts/examples/load_examples.sh ## Run service ```python -python pilot/server/dbgpt_server.py +python dbgpt/app/dbgpt_server.py ```