config.ts 279 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
export const mongoUri = "mongodb://localhost:27017/survey";
2
3
4
5
6
7
8
9
10
11
12
13
14
15

export const jwtCofig = {
  secret: "HelloSecretString",
  expires: "7d",
};

export const cookieConfig = {
  name: "survey",
  maxAge: 60 * 60 * 24 * 7 * 1000,
};

export const envConfig = {
  mode: "development",
};