backend/types/config/environment.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

9 lines
152 B
TypeScript

type Environment = {
port: number;
host: string;
development: boolean;
frontendFqdn: string;
backendFqdn: string;
};
export type { Environment };