seperate all config files, move so i can just call @config
All checks were successful
Code quality checks / biome (push) Successful in 8s

This commit is contained in:
creations 2025-05-03 08:00:36 -04:00
parent e98eebbb47
commit 9d8b3eb969
Signed by: creations
GPG key ID: 8F553AA4320FC711
13 changed files with 77 additions and 76 deletions

3
config/redis.ts Normal file
View file

@ -0,0 +1,3 @@
export const redisTtl: number = process.env.REDIS_TTL
? Number.parseInt(process.env.REDIS_TTL, 10)
: 60 * 60 * 1; // 1 hour