add compose

This commit is contained in:
Vincent Young
2024-04-02 15:37:12 -04:00
parent 59e7b264e0
commit c6bde15d93
2 changed files with 21 additions and 0 deletions

View File

@@ -2,7 +2,22 @@
Use ChatGPT Web login-free version unlimited free use of **GPT-3.5-Turbo**. Forked from [https://github.com/skzhengkai/free-chatgpt-api](https://github.com/skzhengkai/free-chatgpt-api).
## Usage
### Use Node
```bash
npm install
node app.js
```
### Use Docker
```bash
docker run -p 3040:3040 missuo/freegpt35
```
### Use Docker Compose
```bash
mkdir freegpt35 && cd freegpt35
wget -O compose.yaml https://raw.githubusercontent.com/missuo/FreeGPT35/main/compose.yaml
docker compose up -d
```