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-03 18:28:43 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c62b1c1a052c8fdf6ffccf41bd38e2456a7fe1f7
c62b1c1a
1 parent
852f9a0c
데이터베이스 기초 설정
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
src/config.js
src/db.js
src/config.js
0 → 100644
View file @
c62b1c1
module
.
exports
=
{
db
:
'localhost/floater'
};
src/db.js
0 → 100644
View file @
c62b1c1
const
config
=
require
(
'./config'
);
const
db
=
require
(
'monk'
)(
config
.
db
);
module
.
exports
=
db
;
Please
register
or
login
to post a comment