The ALERT_SMS environment variable is currently listed in the template as an array, but if you use the array and have more than one element, the property returns as undefined and causes a parse error.
Would be best (since this is a limitation of the dotenv module) to just load a comma separated list of numbers and then use JS to split on the comma. This should solve that problem.
The ALERT_SMS environment variable is currently listed in the template as an array, but if you use the array and have more than one element, the property returns as
undefined
and causes a parse error.Would be best (since this is a limitation of the
dotenv
module) to just load a comma separated list of numbers and then use JS to split on the comma. This should solve that problem.