app.config.js 378 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,
한규민's avatar
한규민 committed
4
    jwtSecret: 'dfkasf23i$efksdfks!',
Kim, Subin's avatar
Kim, Subin committed
5
6
    jwtExpires: '7d',
    cookieName: 'butterStudio',
7
    cookieNameMb: 'confirmNum',
Kim, Subin's avatar
Kim, Subin committed
8
    cookieMaxAge: 60 * 60 * 24 * 7 * 1000,
Jiwon Yoon's avatar
Jiwon Yoon committed
9
    kakaoAdminKey: 'e3ce7106688a35e072e2630daa9d7250',
Kim, Subin's avatar
Kim, Subin committed
10
11
12
}

export default config