Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 843 Bytes

quickstart.md

File metadata and controls

41 lines (26 loc) · 843 Bytes

Quickstart for development & deployment

0. Dependencies

  • Install Node (v8+) here

1. Clone & setup local dependencies

git clone https://github.com/valgaze/gpt3-chat
cd gpt3-chat
npm run 1st_time

2. Swap in your API key

Swap in your API key in settings/key.json

{
  "key": "XXXXXXXXXXXXXXXXXX"
}

3. Boot

From the directory into which you cloned this repo, run the following to boot servers w/ live reload on code changes

npm start

You should be able to see your chat interface w/ live reload on http://localhost:8080

4. Go nuts