declare const configTemplate = "{\n \"webOptions\": {\n \"port\": 8085,\n \"username\": \"user\",\n \"password\": \"PASSWORD\"\n },\n \"db\": {\n \"dialect\": \"sqlite\",\n \"storage\": \"node-log-notify.db\",\n \"logging\": false\n },\n \"sendMailOptions\": {\n \"nodeMailerTransportOptions\": {\n \"host\": \"mail.example.com\",\n \"port\": 465,\n \"secure\": true,\n \"auth\": {\n \"user\": \"node-log-notify@example.com\",\n \"pass\": \"PASSWORD\"\n }\n },\n \"from\": \"node-log-watch\",\n \"defaultTo\": \"xxx@gmail.com\",\n \"defaultSubject\": \"Process Notification\",\n \"sendDailyReport\":true\n },\n \"processList\": [\n {\n \"name\": \"app-1\",\n \"processManagerType\": \"pm2\",\n \"process2Watch\": \"app-1\",\n \"notifyOnRestart\": {\n \"enable\": true,\n \"when2Notify\": \"immediately\",\n \"maxMessagePerDay\": 10,\n \"includeInDailyReport\":true\n },\n \"notifyOnFailure\": {\n \"enable\": true,\n \"when2Notify\": \"immediately\",\n \"maxMessagePerDay\": 10,\n \"includeInDailyReport\":true\n },\n \"logWatchList\": [\n {\n \"text2Watch\": \"Critical Error\",\n \"lineCount2RecordBefore\": 10,\n \"lineCount2RecordAfter\": 5,\n \"when2Notify\": \"immediately\",\n \"maxMessagePerDay\": 10,\n \"includeInDailyReport\":true,\n \"mailOptions\": {\n \"messagePrefix\": \"Critical Error Occured\",\n \"subject\": \"Need Help: Critical Error\"\n }\n }\n ]\n }\n ]\n}"; export default configTemplate;