Files
chatgpt-ui/README.md
2023-02-11 17:37:20 +08:00

38 lines
647 B
Markdown

# ChatGPT UI
A web client for ChatGPT, using OpenAI's API. The implementation of the interface part uses [waylaidwanderer/node-chatgpt-api](https://github.com/waylaidwanderer/node-chatgpt-api)
This project is based on [nuxt3](https://nuxt.com/docs/getting-started/introduction)
## Quick start with docker
Clone the repository and run:
```bash
docker-compose up
```
## Development
### Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install
```
### Development Server
Start the development server on http://localhost:3000
```bash
yarn dev
```
### Production
Build the application for production:
```bash
yarn build
```