This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .PHONY: compose from-code local staging production | |
| compose = docker-compose -f compose.yaml -f | |
| database: | |
| ${compose} local.yaml up postgres | |
| from-code: | |
| ${compose} local.yaml up --build |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs'); | |
| const htmlparser = require('htmlparser2'); | |
| function Project(xmlConfigPath) { | |
| var self = this; | |
| this.xmlConfigPath = xmlConfigPath; | |
| this.devices = {}; | |
| this.groups = {}; | |
| self.GroupAddressPrefix = []; |
OlderNewer