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.
21 lines
558 B
21 lines
558 B
module.exports = {
|
|
appPort: 3000, // 앱 구동 포트
|
|
secretKey: 'wheeparam', // 암호화를 위해 특정한 키 입력
|
|
// 데이타베이스 관련 설정
|
|
database: {
|
|
host: '',
|
|
username: '',
|
|
password: '',
|
|
port: 3306,
|
|
database: ''
|
|
},
|
|
// CORS관련 설정
|
|
cors: {
|
|
origin: true,
|
|
credentials: true
|
|
},
|
|
jwt: {
|
|
accessTokenExpire: '1m', // accessToken 의 만료시간 (1분)
|
|
refreshTokenExpire: '14d', // refreshToken 의 만료시간 (14일)
|
|
}
|
|
}
|