mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-07-22 20:51:39 +00:00
33 lines
455 B
Markdown
33 lines
455 B
Markdown
# ChatGPT Web Bot
|
|
|
|
This is a ChatGPT web application demo with express and vue3
|
|
|
|

|
|
## Usage
|
|
> Make sure `node >= 18`
|
|
|
|
install node deps
|
|
```shell
|
|
pnpm install
|
|
```
|
|
|
|
Sign up for an [OpenAI API key](https://platform.openai.com/overview) and store it in your environment.
|
|
|
|
```
|
|
# .env
|
|
OPENAI_API_KEY="Your Key"
|
|
```
|
|
|
|
Run service
|
|
```shell
|
|
pnpm run service
|
|
```
|
|
|
|
Run web
|
|
```shell
|
|
pnpm run dev
|
|
```
|
|
|
|
## License
|
|
MIT © [ChenZhaoYu](./license)
|