Toggle navigation
Toggle navigation
This project
Loading...
Sign in
201side
/
floater
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
3
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
robin*
2020-12-07 22:46:53 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3d683e9ee62d40a1eb6d7156d00b867adf3a3a2a
3d683e9e
1 parent
f8c408c0
서버 포트에 바인딩
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
src/main.js
src/main.js
View file @
3d683e9
...
...
@@ -4,4 +4,6 @@ const app = require('./server');
fs
.
readdirSync
(
path
.
resolve
(
__dirname
,
'routes'
)).
forEach
((
name
)
=>
{
require
(
path
.
resolve
(
__dirname
,
'routes'
,
name
));
});
\ No newline at end of file
});
app
.
listen
(
3429
);
...
...
Please
register
or
login
to post a comment