Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Commit

Permalink
Reorder config
Browse files Browse the repository at this point in the history
  • Loading branch information
maxijonson committed Jul 16, 2022
1 parent ccd7009 commit 937e26f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ ConfigService.addConfig("port", "PORT", 3000)
.addConfig("maxMergerFileSize", "MAX_MERGER_FILE_SIZE", 100 * MB)
.addConfig("maxMergers", "MAX_MERGERS", 5)
.addConfig("cleanupMergersDelay", "CLEANUP_MERGERS_DELAY", 1000 * 45)
.addConfig("requestLogging", "REQUEST_LOGGING", true)
.addConfig("mergerLogging", "MERGER_LOGGING", true)
.addConfig("dbLogging", "DB_LOGGING", true)
.addConfig("cleanAfterMerge", "CLEAN_AFTER_MERGE", true)
.addConfig("dbAdapter", "DB_ADAPTER", "fs")
.addConfig("redisURL", "REDIS_URL", "redis://localhost:6379")
.addConfig("mongoURL", "MONGO_URL", "mongodb://localhost:27017")
.addConfig("cleanAfterMerge", "CLEAN_AFTER_MERGE", true);
.addConfig("requestLogging", "REQUEST_LOGGING", true)
.addConfig("mergerLogging", "MERGER_LOGGING", true)
.addConfig("dbLogging", "DB_LOGGING", true);

0 comments on commit 937e26f

Please sign in to comment.