From 07d8db2bb758686466d4643f575b4b5280cc4791 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 4 Apr 2021 00:45:50 +0200 Subject: Add project --- config/index.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 config/index.js (limited to 'config') diff --git a/config/index.js b/config/index.js new file mode 100644 index 0000000..8199cbc --- /dev/null +++ b/config/index.js @@ -0,0 +1,7 @@ +const Getenv = require('getenv'); + +module.exports = { + + port: Getenv.int('CORONA_REGELN_PORT', 4949), + ruleCount: Getenv.int('CORONA_REGELN_RULE_COUNT', 4) +}; -- cgit