Skip to content

Commit

Permalink
Merge eab9b2b into 2540859
Browse files Browse the repository at this point in the history
  • Loading branch information
danielwestendorf committed Jan 14, 2020
2 parents 2540859 + eab9b2b commit 7cca41c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions index.js
Expand Up @@ -20,6 +20,7 @@ const chrome = spawn(
'--disable-dev-shm-usage',
'--disable-software-rasterizer',
'--mute-audio',
'--remote-debugging-address=0.0.0.0',
'--remote-debugging-port=9222'
]
)
Expand All @@ -33,6 +34,10 @@ chrome.stdout.on('data', (data) => {
console.log(data.toString())
})

chrome.stderr.on('data', (data) => {
console.log(data.toString())
})

new Server({
port: process.env.PORT || 5001,
privateToken: process.env.PRIVATE_TOKEN
Expand Down

0 comments on commit 7cca41c

Please sign in to comment.