mirror of https://github.com/sunface/rust-course
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
229 B
6 lines
229 B
5 years ago
|
module.exports = {
|
||
|
HOST: 'localhost', // 定义ip地址
|
||
|
PORT: '3023', // 定义端口号
|
||
|
DB_FILE: './db.js', // 定义批量模拟数据文件
|
||
|
API: '/api'//创建根api名 这里的 /mock 如同 后端真实/api
|
||
|
}
|