This is an example pet name generator app used in the OpenAI API [quickstart tutorial](https://beta.openai.com/docs/quickstart). It uses the [Next.js](https://nextjs.org/) framework with [React](https://reactjs.org/). Check out the tutorial or follow the
npm install openai-quickstart-nodebash
$ cd openai-quickstart-node
`
4. Install the requirements
`bash
$ npm install
`
5. Make a copy of the example environment variables file
On Linux systems:
`bash
$ cp .env.example .env
`
On Windows:
`powershell
$ copy .env.example .env
`
6. Add your API key to the newly created .env file
7. Run the app
`bash
$ npm run dev
``