Toggle navigation
Toggle navigation
This project
Loading...
Sign in
은승우
/
LINEBOT
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
은승우
2019-12-02 13:58:44 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
20449ae17cf35e583c7771f5e34c7e553323ab56
20449ae1
1 parent
d6a2b4ff
Update app.js
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
app.js
app.js
View file @
20449ae
...
...
@@ -22,7 +22,9 @@ const lex = require('greenlock-express').create({
});
//papago api
https
.
createServer
(
lex
.
httpsOptions
,
lex
.
middleware
(
app
)).
listen
(
process
.
env
.
SSL_PORT
||
443
);
https
.
createServer
(
lex
.
httpsOptions
,
lex
.
middleware
(
app
)).
listen
((
process
.
env
.
SSL_PORT
||
443
),()
=>
{
console
.
log
(
"server on "
);
});
//번역 api_url
var
translate_api_url
=
'https://openapi.naver.com/v1/papago/n2mt'
;
...
...
Please
register
or
login
to post a comment