Skip to content

Commit

Permalink
docs: how-to-build section
Browse files Browse the repository at this point in the history
  • Loading branch information
ddiu8081 authored Mar 2, 2023
1 parent fed782f commit 6a0c9b1
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
# ChatGPT-API Demo

A demo repo based on [OpenAI GPT-3.5 Turbo API](https://platform.openai.com/docs/guides/chat).
A demo repo based on [OpenAI GPT-3.5 Turbo API](https://platform.openai.com/docs/guides/chat).

## How to build

1. Setup & Install dependencies

> First, you need [Node.js](https://nodejs.org/) (v18+) installed.
```shell
npm i
```

2. Make a copy of `.env.example`, then rename it to `.env`
3. Add your [OpenAI API key](https://platform.openai.com/account/api-keys) to `.env`
```
OPENAI_API_KEY=sk-xxx...
```
4. Run the app
```shell
npm run dev
```

## License

MIT

0 comments on commit 6a0c9b1

Please sign in to comment.