fix: #2699 remove double quotes in readme

This commit is contained in:
Yifei Zhang 2023-08-24 11:09:17 +08:00 committed by GitHub
parent bdaac17886
commit d8b6ebf6cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 20 additions and 20 deletions

View File

@ -135,8 +135,8 @@ BASE_URL=https://chatgpt1.nextweb.fun/api/proxy
docker pull yidadaa/chatgpt-next-web docker pull yidadaa/chatgpt-next-web
docker run -d -p 3000:3000 \ docker run -d -p 3000:3000 \
-e OPENAI_API_KEY="sk-xxxx" \ -e OPENAI_API_KEY=sk-xxxx \
-e CODE="页面访问密码" \ -e CODE=页面访问密码 \
yidadaa/chatgpt-next-web yidadaa/chatgpt-next-web
``` ```
@ -144,10 +144,10 @@ docker run -d -p 3000:3000 \
```shell ```shell
docker run -d -p 3000:3000 \ docker run -d -p 3000:3000 \
-e OPENAI_API_KEY="sk-xxxx" \ -e OPENAI_API_KEY=sk-xxxx \
-e CODE="页面访问密码" \ -e CODE=页面访问密码 \
--net=host \ --net=host \
-e PROXY_URL="http://127.0.0.1:7890" \ -e PROXY_URL=http://127.0.0.1:7890 \
yidadaa/chatgpt-next-web yidadaa/chatgpt-next-web
``` ```

View File

@ -130,8 +130,8 @@ Antes de empezar a escribir código, debe crear uno nuevo en la raíz del proyec
docker pull yidadaa/chatgpt-next-web docker pull yidadaa/chatgpt-next-web
docker run -d -p 3000:3000 \ docker run -d -p 3000:3000 \
-e OPENAI_API_KEY="sk-xxxx" \ -e OPENAI_API_KEY=sk-xxxx \
-e CODE="页面访问密码" \ -e CODE=your-password \
yidadaa/chatgpt-next-web yidadaa/chatgpt-next-web
``` ```
@ -139,10 +139,10 @@ También puede especificar proxy:
```shell ```shell
docker run -d -p 3000:3000 \ docker run -d -p 3000:3000 \
-e OPENAI_API_KEY="sk-xxxx" \ -e OPENAI_API_KEY=sk-xxxx \
-e CODE="页面访问密码" \ -e CODE=your-password \
--net=host \ --net=host \
-e PROXY_URL="http://127.0.0.1:7890" \ -e PROXY_URL=http://127.0.0.1:7890 \
yidadaa/chatgpt-next-web yidadaa/chatgpt-next-web
``` ```

View File

@ -196,8 +196,8 @@ yarn dev
docker pull yidadaa/chatgpt-next-web docker pull yidadaa/chatgpt-next-web
docker run -d -p 3000:3000 \ docker run -d -p 3000:3000 \
-e OPENAI_API_KEY="sk-xxxx" \ -e OPENAI_API_KEY=sk-xxxx \
-e CODE="your-password" \ -e CODE=your-password \
yidadaa/chatgpt-next-web yidadaa/chatgpt-next-web
``` ```
@ -205,9 +205,9 @@ docker run -d -p 3000:3000 \
```shell ```shell
docker run -d -p 3000:3000 \ docker run -d -p 3000:3000 \
-e OPENAI_API_KEY="sk-xxxx" \ -e OPENAI_API_KEY=sk-xxxx \
-e CODE="your-password" \ -e CODE=your-password \
-e PROXY_URL="http://localhost:7890" \ -e PROXY_URL=http://localhost:7890 \
yidadaa/chatgpt-next-web yidadaa/chatgpt-next-web
``` ```

View File

@ -135,8 +135,8 @@ BASE_URL=https://chatgpt1.nextweb.fun/api/proxy
docker pull yidadaa/chatgpt-next-web docker pull yidadaa/chatgpt-next-web
docker run -d -p 3000:3000 \ docker run -d -p 3000:3000 \
-e OPENAI_API_KEY="sk-xxxx" \ -e OPENAI_API_KEY=sk-xxxx \
-e CODE="페이지 접근 비밀번호" \ -e CODE=페이지 접근 비밀번호 \
yidadaa/chatgpt-next-web yidadaa/chatgpt-next-web
``` ```
@ -144,10 +144,10 @@ docker run -d -p 3000:3000 \
```shell ```shell
docker run -d -p 3000:3000 \ docker run -d -p 3000:3000 \
-e OPENAI_API_KEY="sk-xxxx" \ -e OPENAI_API_KEY=sk-xxxx \
-e CODE="페이지 접근 비밀번호" \ -e CODE=페이지 접근 비밀번호 \
--net=host \ --net=host \
-e PROXY_URL="http://127.0.0.1:7890" \ -e PROXY_URL=http://127.0.0.1:7890 \
yidadaa/chatgpt-next-web yidadaa/chatgpt-next-web
``` ```