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

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

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

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