Skip to content

Commit 344a6b1

Browse files
committed
init
1 parent f67d000 commit 344a6b1

16 files changed

+8520
-0
lines changed

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules/
2+
.idea/
3+
.DS_Store
4+
static/output/dist/
5+
static/output/upload/
6+
npm-debug.log
7+
npm-debug.log.*

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry = "https://registry.npmmirror.com/"

config.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
const config = {
2+
port: 3001,
3+
4+
database: {
5+
DATABASE: "koa_demo",
6+
USERNAME: "root",
7+
PASSWORD: "password@2024",
8+
PORT: "3066",
9+
HOST: "124.70.135.97",
10+
},
11+
};
12+
13+
module.exports = config;

0 commit comments

Comments
 (0)