export const COMPANY_NAME = 'treehouse'; export const APP_NAME = 'spoken'; export const REFRESH_TOKEN_COOKIE_NAME = 'refresh_token'; export const ACCESS_TOKEN_HEADER_NAME = 'authorization'; /** * designates how long each refresh token should live, formatted to be parsed by * {@link https://github.com/vercel/ms} */ export const REFRESH_TOKEN_EXPIRATION_TIME = '30d'; /** * designates how long each access token should live, formatted to be parsed by * {@link https://github.com/vercel/ms} */ export const ACCESS_TOKEN_EXPIRATION_TIME = '15m';