EC2 Default User

ready to code

Showing 10 changed files with 60 additions and 5 deletions
1 +{
2 + // IntelliSense를 사용하여 가능한 특성에 대해 알아보세요.
3 + // 기존 특성에 대한 설명을 보려면 가리킵니다.
4 + // 자세한 내용을 보려면 https://go.microsoft.com/fwlink/?linkid=830387을(를) 방문하세요.
5 + "version": "0.2.0",
6 + "configurations": [
7 + {
8 + "type": "pwa-node",
9 + "request": "launch",
10 + "name": "Launch Program",
11 + "skipFiles": [
12 + "<node_internals>/**"
13 + ],
14 + "program": "${workspaceFolder}/app.js",
15 + "runtimeExecutable": "${env:HOME}/.nvm/versions/node/v16.15.0/bin/node"
16 + }
17 + ]
18 +}
...\ No newline at end of file ...\ No newline at end of file
...@@ -6,7 +6,7 @@ const HTTPS = require('https'); ...@@ -6,7 +6,7 @@ const HTTPS = require('https');
6 const app = express(); 6 const app = express();
7 // 본인이 소유한 도메인으로 변경해야 함 7 // 본인이 소유한 도메인으로 변경해야 함
8 // www 붙여야 함 8 // www 붙여야 함
9 -const domain = "www.stagefive.tk" 9 +const domain = "2019102197.osschatbot2022.ml"
10 const sslport = 23023; 10 const sslport = 23023;
11 11
12 app.get('/', function (req, res) { 12 app.get('/', function (req, res) {
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
9 "author": "", 9 "author": "",
10 "license": "ISC", 10 "license": "ISC",
11 "dependencies": { 11 "dependencies": {
12 - "express": "^4.17.1" 12 + "express": "^4.17.1",
13 + "npm": "^8.11.0"
13 } 14 }
14 } 15 }
......
1 +{
2 + // IntelliSense를 사용하여 가능한 특성에 대해 알아보세요.
3 + // 기존 특성에 대한 설명을 보려면 가리킵니다.
4 + // 자세한 내용을 보려면 https://go.microsoft.com/fwlink/?linkid=830387을(를) 방문하세요.
5 + "version": "0.2.0",
6 + "configurations": [
7 + {
8 + "type": "pwa-node",
9 + "request": "launch",
10 + "name": "Launch Program",
11 + "skipFiles": [
12 + "<node_internals>/**"
13 + ],
14 + "program": "${workspaceFolder}/app.js",
15 + "runtimeExecutable": "${env:HOME}/.nvm/versions/node/v16.15.0/bin/node"
16 + }
17 + ]
18 +}
...\ No newline at end of file ...\ No newline at end of file
1 var express = require('express'); 1 var express = require('express');
2 const request = require('request'); 2 const request = require('request');
3 const TARGET_URL = 'https://api.line.me/v2/bot/message/reply' 3 const TARGET_URL = 'https://api.line.me/v2/bot/message/reply'
4 -const TOKEN = '채널 토큰' 4 +const TOKEN = 'A3e2T6lFz02I+kWl6BydLTnWCtxcsvioAr6g4FJMgvZyRcxzy+EdJntPO09XKEHOF08Pgg+L9rNEFKEYrhdhRNg5bmiGZdiaTJfp1DaY/uTVMjRU+hRM00OwvaWq4mxYt/GYLEDzrsQ3O8ezd9WbqQdB04t89/1O/w1cDnyilFU='
5 const PAPAGO_URL = 'https://openapi.naver.com/v1/papago/n2mt' 5 const PAPAGO_URL = 'https://openapi.naver.com/v1/papago/n2mt'
6 const PAPAGO_ID = '파파고 ID' 6 const PAPAGO_ID = '파파고 ID'
7 const PAPAGO_SECRET = '파파고 Client Secret' 7 const PAPAGO_SECRET = '파파고 Client Secret'
8 const fs = require('fs'); 8 const fs = require('fs');
9 const path = require('path'); 9 const path = require('path');
10 const HTTPS = require('https'); 10 const HTTPS = require('https');
11 -const domain = "도메인 명" 11 +const domain = "2019102197.osschatbot2022.ml"
12 const sslport = 23023; 12 const sslport = 23023;
13 const bodyParser = require('body-parser'); 13 const bodyParser = require('body-parser');
14 var app = express(); 14 var app = express();
......
1 +{
2 + // IntelliSense를 사용하여 가능한 특성에 대해 알아보세요.
3 + // 기존 특성에 대한 설명을 보려면 가리킵니다.
4 + // 자세한 내용을 보려면 https://go.microsoft.com/fwlink/?linkid=830387을(를) 방문하세요.
5 + "version": "0.2.0",
6 + "configurations": [
7 + {
8 + "type": "pwa-node",
9 + "request": "launch",
10 + "name": "Launch Program",
11 + "skipFiles": [
12 + "<node_internals>/**"
13 + ],
14 + "program": "${workspaceFolder}/app.js",
15 + "runtimeExecutable": "${env:HOME}/.nvm/versions/node/v16.15.0/bin/node"
16 + }
17 + ]
18 +}
...\ No newline at end of file ...\ No newline at end of file
...@@ -4,7 +4,7 @@ var app = express(); ...@@ -4,7 +4,7 @@ var app = express();
4 const fs = require('fs'); 4 const fs = require('fs');
5 const path = require('path'); 5 const path = require('path');
6 const HTTPS = require('https'); 6 const HTTPS = require('https');
7 -const domain = "도메인 변경 처리" 7 +const domain = "2019102197.osschatbot2022.ml"
8 const sslport = 23023; 8 const sslport = 23023;
9 9
10 app.use(bodyParser.json()); 10 app.use(bodyParser.json());
......