11 lines
239 B
JavaScript
11 lines
239 B
JavaScript
|
|
module.exports = {
|
||
|
|
JWT_SECRET: 'your-secret-key-here', // 请在生产环境中替换为强密钥
|
||
|
|
DB_CONFIG: {
|
||
|
|
host: 'localhost',
|
||
|
|
user: 'root',
|
||
|
|
password: '',
|
||
|
|
database: 'government_db',
|
||
|
|
port: 3306
|
||
|
|
},
|
||
|
|
PORT: 5352
|
||
|
|
}
|