clinical:env
Drop in config that will enable DEBUG, TRACE, and TEST environment variables.
========================================
Installation
meteor add clinical:env-config-debug
========================================
Usage
Adding this package enables the following API in your applicaiton.
1 if (Env.isDebug) { 2 // display or log debug info 3 } 4 if (Env.isTrace) { 5 // display or log trace info 6 } 7 if (Env.isDevelopment) { 8 // display development feature 9 } 10 if (Env.isTesting) { 11 // display testing feature 12 }
========================================