backend/src/environment/extra.ts
creations fff3c3ca50
All checks were successful
Code quality checks / biome (push) Successful in 13s
- move config requiredVariables to contants
- change register email
- add verify route ( mostly still needs to be tested
2025-06-11 09:20:48 -04:00

6 lines
171 B
TypeScript

const extraValues = {
companyName: process.env.EXTRA_COMPANY_NAME || "Default Company",
supportEmail: process.env.EXTRA_SUPPORT_EMAIL || "",
};
export { extraValues };