Skip to content

Commit 80daddf

Browse files
committed
chore(docs): recommended to use server up to start
1 parent 1782c5d commit 80daddf

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,14 +118,14 @@ You should have [docker](https://www.docker.com/get-started/) installed and an O
118118

119119
```bash
120120
mkdir acontext_server && cd acontext_server
121-
acontext docker up
121+
acontext server up
122122
```
123123

124124
> [!IMPORTANT]
125125
>
126126
> Make sure your LLM has the ability to [call tools](https://platform.openai.com/docs/guides/function-calling). By default, Acontext will use `gpt-4.1`.
127127
128-
`acontext docker up` will create/use `.env` and `config.yaml` for Acontext, and create a `db` folder to persist data.
128+
`acontext server up` will create/use `.env` and `config.yaml` for Acontext, and create a `db` folder to persist data.
129129

130130

131131

docs/settings/local.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ Acontext requires at least an OpenAI API Key to Start.
1313
```bash .env
1414
LLM_API_KEY="YOUR_OPENAI_API_KEY"
1515
```
16-
Place your `.env` file and run `acontext docker up` at the same directory:
16+
Place your `.env` file and run `acontext server up` at the same directory:
1717
```bash server
1818
mkdir acontext_server && cd acontext_server
19-
acontext docker up
19+
acontext server up
2020
```
21-
`acontext docker up` will create/use the existing `.env` and `config.yaml` for Acontext, and create a `db` folder to persist data.
21+
`acontext server up` will create/use the existing `.env` and `config.yaml` for Acontext, and create a `db` folder to persist data.
2222

2323
Once it's done, you can access the following endpoints:
2424
- Acontext Base URL: http://localhost:8029/api/v1

src/client/acontext-cli/cmd/create.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ func runCreate(cmd *cobra.Command, args []string) error {
194194
fmt.Printf(" 2. Read the README to get started:\n")
195195
fmt.Printf(" cat README.md\n")
196196
fmt.Println()
197-
fmt.Printf(" 3. Deploy with Docker (optional):\n")
198-
fmt.Printf(" acontext docker up\n")
197+
fmt.Printf(" 3. Start Acontext server (optional):\n")
198+
fmt.Printf(" acontext server up\n")
199199
fmt.Println()
200200

201201
return nil

0 commit comments

Comments
 (0)