Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2021_dev-profile
/
dev-profile
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
Lee SeJin
2021-06-08 01:05:04 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
68c817fc5613b9724757113b0bebe3ca264b7105
68c817fc
1 parent
aa9572a1
Update port variable
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/init.js
src/init.js
View file @
68c817f
...
...
@@ -5,7 +5,7 @@ import "./models/User";
import
app
from
"./server"
;
const
PORT
=
5500
;
const
PORT
=
process
.
env
.
PORT
||
5500
;
const
handleListening
=
()
=>
console
.
log
(
`✅ Server running : http://localhost:
${
PORT
}
`
);
app
.
listen
(
PORT
,
handleListening
);
\ No newline at end of file
...
...
Please
register
or
login
to post a comment