app.config.js 315 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
3
const config = {
    env: process.env.NODE_ENV === 'production' ? 'production' : 'development',
    port: process.env.PORT || 3001,
4
5
6
7
8
    jwtSecret: 'lrfp8sQdoLG6eT',
    jwtExpires: '30d',
    cookieName: 'todayku',
    cookieNameMb: 'confirmNum',
    cookieMaxAge: 60 * 60 * 24 * 30 * 1000,
Kim, Subin's avatar
Kim, Subin committed
9
10
11
}

export default config