File tree 6 files changed +79
-3
lines changed
6 files changed +79
-3
lines changed Original file line number Diff line number Diff line change
1
+ /node_modules
Original file line number Diff line number Diff line change
1
+ FROM node:18-alpine
2
+
3
+ WORKDIR /app
4
+
5
+ COPY . .
6
+
7
+ RUN npm ci --only=production
8
+
9
+ CMD [ "npm" , "start" ]
Original file line number Diff line number Diff line change @@ -177,7 +177,6 @@ APP_PORT=3000
177
177
178
178
VERCEL_GIT_REPO_SLUG=gpt-ai-assistant
179
179
VERCEL_ACCESS_TOKEN=<your_vercel_access_token>
180
- VERCEL_DEPLOY_HOOK_URL=<your_vercel_deploy_hook_url>
181
180
182
181
OPENAI_API_KEY=<your_openai_api_key>
183
182
@@ -214,6 +213,35 @@ Human: 嗨?
214
213
AI: 很高興見到你!有什麼可以為你服務的嗎?
215
214
```
216
215
216
+ ### Using Docker
217
+
218
+ Copy ` .env.example ` to ` .env ` .
219
+
220
+ ``` bash
221
+ cp .env.example .env
222
+ ```
223
+
224
+ Set the environment variables as follows:
225
+
226
+ ``` env
227
+ APP_DEBUG=true
228
+ APP_PORT=3000
229
+
230
+ VERCEL_GIT_REPO_SLUG=gpt-ai-assistant
231
+ VERCEL_ACCESS_TOKEN=<your_vercel_access_token>
232
+
233
+ OPENAI_API_KEY=<your_openai_api_key>
234
+
235
+ LINE_CHANNEL_ACCESS_TOKEN=<your_line_channel_access_token>
236
+ LINE_CHANNEL_SECRET=<your_line_channel_secret>
237
+ ```
238
+
239
+ Start a local server with Docker Compose.
240
+
241
+ ``` bash
242
+ docker-compose up -d
243
+ ```
244
+
217
245
## Changelog
218
246
219
247
Detailed changes for each release are documented in the [ release notes] ( https://github.com/memochou1993/gpt-ai-assistant/releases ) .
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ cd gpt-ai-assistant
162
162
npm ci
163
163
```
164
164
165
- ### 測試
165
+ ### 執行測試
166
166
167
167
建立 ` .env.test ` 檔。
168
168
@@ -211,7 +211,6 @@ APP_PORT=3000
211
211
212
212
VERCEL_GIT_REPO_SLUG=gpt-ai-assistant
213
213
VERCEL_ACCESS_TOKEN=<your_vercel_access_token>
214
- VERCEL_DEPLOY_HOOK_URL=<your_vercel_deploy_hook_url>
215
214
216
215
OPENAI_API_KEY=<your_openai_api_key>
217
216
@@ -248,6 +247,35 @@ Human: 嗨?
248
247
AI: 很高興見到你!有什麼可以為你服務的嗎?
249
248
```
250
249
250
+ ### 使用 Docker 容器
251
+
252
+ 建立 ` .env ` 檔。
253
+
254
+ ``` bash
255
+ cp .env.example .env
256
+ ```
257
+
258
+ 設置環境變數如下:
259
+
260
+ ``` env
261
+ APP_DEBUG=true
262
+ APP_PORT=3000
263
+
264
+ VERCEL_GIT_REPO_SLUG=gpt-ai-assistant
265
+ VERCEL_ACCESS_TOKEN=<your_vercel_access_token>
266
+
267
+ OPENAI_API_KEY=<your_openai_api_key>
268
+
269
+ LINE_CHANNEL_ACCESS_TOKEN=<your_line_channel_access_token>
270
+ LINE_CHANNEL_SECRET=<your_line_channel_secret>
271
+ ```
272
+
273
+ 在終端機使用以下指令,啟動一個本地伺服器。
274
+
275
+ ``` bash
276
+ docker-compose up -d
277
+ ```
278
+
251
279
## 更新日誌
252
280
253
281
請到「[ Releases] ( https://github.com/memochou1993/gpt-ai-assistant/releases ) 」頁面查看發布通知。
Original file line number Diff line number Diff line change
1
+ version : " 3"
2
+
3
+ services :
4
+ app :
5
+ container_name : gpt-ai-assistant
6
+ build : .
7
+ restart : always
8
+ ports :
9
+ - " ${APP_PORT}:${APP_PORT}"
Original file line number Diff line number Diff line change 4
4
"type" : " module" ,
5
5
"scripts" : {
6
6
"dev" : " nodemon api/index.js" ,
7
+ "start" : " node api/index.js" ,
7
8
"test" : " jest"
8
9
},
9
10
"dependencies" : {
You can’t perform that action at this time.
0 commit comments