app.config.js 294 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
3
4
5
6
7
8
9
10
const config = {
    env: process.env.NODE_ENV === 'production' ? 'production' : 'development',
    port: process.env.PORT || 3001,
    // jwtSecret: 'dfkasf23i$efksdfks!',
    jwtExpires: '7d',
    cookieName: 'butterStudio',
    cookieMaxAge: 60 * 60 * 24 * 7 * 1000,
}

export default config