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.

20 lines
558 B

12 months ago
  1. module.exports = {
  2. appPort: 3000, // 앱 구동 포트
  3. secretKey: 'wheeparam', // 암호화를 위해 특정한 키 입력
  4. // 데이타베이스 관련 설정
  5. database: {
  6. host: '',
  7. username: '',
  8. password: '',
  9. port: 3306,
  10. database: ''
  11. },
  12. // CORS관련 설정
  13. cors: {
  14. origin: true,
  15. credentials: true
  16. },
  17. jwt: {
  18. accessTokenExpire: '1m', // accessToken 의 만료시간 (1분)
  19. refreshTokenExpire: '14d', // refreshToken 의 만료시간 (14일)
  20. }
  21. }