https://github.com/theexplainthis/chatgpt-email-assistant
https://github.com/theexplainthis/chatgpt-email-assistant
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/theexplainthis/chatgpt-email-assistant
- Owner: TheExplainthis
- License: mit
- Created: 2023-04-07T05:04:28.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-13T05:01:25.000Z (12 months ago)
- Last Synced: 2025-03-31T16:53:16.656Z (about 1 month ago)
- Language: JavaScript
- Size: 13.7 KB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenAI Email 產生器
這是一個 Email 產生器。它使用 [Next.js](https://nextjs.org/) 框架和 [OpenAI API](https://platform.openai.com/docs/quickstart)。
## 專案設置
1. 如果尚未安裝Node.js, 請先進行[安裝](https://nodejs.org/en/) (Node.js version >= 14.6.0 required)
2. Clone 這個 Repository
4. 安裝所需套件
```bash
$ npm install
```5. 建立一個 .env 檔案,將你的 [OpenAI API 金鑰](https://platform.openai.com/account/api-keys) 添加到新建的 .env 文件中。
On Linux systems:
```bash
$ cp .env.example .env
```
On Windows:
```powershell
$ copy .env.example .env
```
7. 啟動應用程式```bash
$ npm run dev
```現在,你應該能夠在 http://localhost:3000 上訪問應用程式!