Move default memory limit to constants.js

This commit is contained in:
Johannes Zellner
2016-02-14 12:13:49 +01:00
parent 79199bf023
commit 5f96d862ab
3 changed files with 8 additions and 7 deletions

View File

@@ -7,6 +7,8 @@ exports = module.exports = {
ADMIN_NAME: 'Settings',
ADMIN_CLIENT_ID: 'webadmin', // oauth client id
ADMIN_APPID: 'admin' // admin appid (settingsdb)
ADMIN_APPID: 'admin', // admin appid (settingsdb)
DEFAULT_MEMORY_LIMIT: (256 * 1024 * 1024)
};