staff_data/apps/server/src/env.ts

4 lines
213 B
TypeScript
Raw Normal View History

2024-09-10 10:31:24 +08:00
export const env: { JWT_SECRET: string, APP_URL: string } = {
JWT_SECRET: process.env.JWT_SECRET || '/yT9MnLm/r6NY7ee2Fby6ihCHZl+nFx4OQFKupivrhA=',
APP_URL: process.env.APP_URL || 'http://localhost:5173'
2024-09-03 20:19:33 +08:00
}