-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update dependencies, move to use es6 modules imports, bind /data/vide…
…o to /video for easier video displaying
- Loading branch information
Showing
28 changed files
with
3,517 additions
and
1,657 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,3 +72,4 @@ data/*.log | |
data/template.json | ||
!data/bundles/default | ||
!data/bundles/default/* | ||
data/video/*.mp4 |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
#!/usr/bin/env node | ||
|
||
var fs = require('fs'); | ||
import fs from 'fs'; | ||
import { daemon } from 'daemon'; | ||
var stdoutFd = fs.openSync('./data/output.log', 'a'); | ||
var stderrFd = fs.openSync('./data/errors.log', 'a'); | ||
var proc2 = require('daemon').daemon("./bin/infoscreen3", | ||
var proc2 = daemon("./bin/infoscreen3", | ||
"", | ||
{ | ||
cwd: process.cwd(), | ||
stdout: stdoutFd, | ||
stderr: stderrFd, | ||
stderr: stderrFd, | ||
}); | ||
|
||
console.log(proc2.pid); |
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains 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
This file contains 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
Oops, something went wrong.