- move config requiredVariables to contants
All checks were successful
Code quality checks / biome (push) Successful in 13s

- change register email
- add verify route ( mostly still needs to be tested
This commit is contained in:
creations 2025-06-11 09:20:48 -04:00
parent 83b71f62cf
commit fff3c3ca50
Signed by: creations
GPG key ID: 8F553AA4320FC711
16 changed files with 482 additions and 89 deletions

View file

@ -1,3 +1,32 @@
export const requiredVariables = [
"HOST",
"PORT",
"REDIS_URL",
"REDIS_TTL",
"CASSANDRA_HOST",
"CASSANDRA_PORT",
"CASSANDRA_CONTACT_POINTS",
"CASSANDRA_DATACENTER",
"CASSANDRA_KEYSPACE",
"JWT_SECRET",
"JWT_EXPIRATION",
"JWT_ISSUER",
"FRONTEND_FQDN",
"SMTP_ADDRESS",
"SMTP_PORT",
"SMTP_FROM",
"SMTP_USERNAME",
"SMTP_PASSWORD",
"EXTRA_COMPANY_NAME",
"EXTRA_SUPPORT_EMAIL",
];
export * from "./server";
export * from "./validation";
export * from "./database";