chore: README.zh-CN.md
This commit is contained in:
parent
0ddc1e8ad6
commit
978a527c0a
|
@ -1,6 +1,8 @@
|
|||
# ChatGPT Web Bot
|
||||
|
||||
This is a ChatGPT web application demo with express and vue3
|
||||
English | [中文](./README.zh-CN.md)
|
||||
|
||||
ChartGPT demo page built with express and vue3
|
||||
|
||||
![cover](./docs/cover.png)
|
||||
## Usage
|
||||
|
|
|
@ -0,0 +1,35 @@
|
|||
# ChatGPT Web Bot
|
||||
|
||||
[English](./README.md) | 中文
|
||||
|
||||
使用 express 和 vue3 搭建的 ChartGPT 演示网页
|
||||
|
||||
![cover](./docs/cover.png)
|
||||
|
||||
## 使用
|
||||
> Make sure `node >= 18`
|
||||
|
||||
安装依赖
|
||||
```shell
|
||||
pnpm install
|
||||
```
|
||||
|
||||
获取 [OpenAI API key](https://platform.openai.com/overview) 到本地环境变量
|
||||
|
||||
```
|
||||
# .env
|
||||
OPENAI_API_KEY="Your Key"
|
||||
```
|
||||
|
||||
运行服务
|
||||
```shell
|
||||
pnpm run service
|
||||
```
|
||||
|
||||
运行网页
|
||||
```shell
|
||||
pnpm run dev
|
||||
```
|
||||
|
||||
## License
|
||||
MIT © [ChenZhaoYu](./license)
|
Loading…
Reference in New Issue