Skip to content

Commit

Permalink
updt setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeTWC1984 committed Jul 9, 2020
1 parent fc056f9 commit 162c885
Show file tree
Hide file tree
Showing 5 changed files with 182 additions and 20 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/node_modules
/work
/logs
/queue
/data
/conf
34 changes: 34 additions & 0 deletions htdocs/index-dev.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,40 @@
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/materialdesignicons.min.css">
<!-- BUILD: COMBINE_STYLE_END -->


<link rel="stylesheet" href="codemirror/lib/codemirror.css">
<link rel="stylesheet" href="codemirror/theme/darcula.css">
<link rel="stylesheet" href="codemirror/theme/solarized.css">
<link rel="stylesheet" href="codemirror/theme/gruvbox-dark.css">
<link rel="stylesheet" href="codemirror/addon/scroll/simplescrollbars.css">
<script src="js/external/ansi_up.js"></script>
<script src="codemirror/lib/codemirror.js"></script>
<script src="codemirror/addon/scroll/simplescrollbars.js"></script>
<script src="codemirror/addon/edit/matchbrackets.js"></script>
<script src="codemirror/addon/selection/active-line.js"></script>
<script src="codemirror/mode/powershell/powershell.js"></script>
<script src="codemirror/mode/javascript/javascript.js"></script>
<script src="codemirror/mode/python/python.js"></script>
<script src="codemirror/mode/shell/shell.js"></script>
<script src="codemirror/mode/groovy/groovy.js"></script>
<style>
.CodeMirror {
border: 1px solid lightgray;
font-family: consolas, monaco, "Andale Mono", monospace;
font-style: normal;
font-weight: 400;
font-size: 1em;
width: 50em;
height: 36em;
resize: both;
}

.CodeMirror-gutter {
padding-right: 4px;
padding-left: 2px;
}
</style>
</head>

<body>
Expand Down
112 changes: 112 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

41 changes: 22 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,42 +22,45 @@
"scheduler"
],
"dependencies": {
"ansi_up": "^4.0.4",
"async": "2.6.0",
"socket.io": "1.7.3",
"socket.io-client": "1.7.3",
"mkdirp": "0.5.1",
"aws-sdk": "^2.712.0",
"bcrypt-node": "0.1.0",
"chart.js": "2.7.1",
"codemirror": "^5.55.0",
"font-awesome": "4.7.0",
"glob": "5.0.15",
"uglify-js": "2.8.22",
"zxcvbn": "3.5.0",
"jquery": "3.3.1",
"font-awesome": "4.7.0",
"jstimezonedetect": "1.0.6",
"mdi": "1.9.33",
"chart.js": "2.7.1",
"mkdirp": "0.5.1",
"moment": "2.22.1",
"moment-timezone": "0.5.14",
"jstimezonedetect": "1.0.6",
"netmask": "1.0.6",
"shell-quote": "1.6.1",
"bcrypt-node": "0.1.0",
"uncatch": "^1.0.0",
"pixl-args": "^1.0.3",
"pixl-class": "^1.0.2",
"pixl-cli": "^1.0.8",
"pixl-config": "^1.0.5",
"pixl-webapp": "^1.0.17",
"pixl-class": "^1.0.2",
"pixl-tools": "^1.0.23",
"pixl-logger": "^1.0.14",
"pixl-json-stream": "^1.0.6",
"pixl-request": "^1.0.27",
"pixl-logger": "^1.0.14",
"pixl-mail": "^1.0.8",
"pixl-perf": "^1.0.5",
"pixl-request": "^1.0.27",
"pixl-server": "^1.0.26",
"pixl-server-api": "^1.0.2",
"pixl-server-storage": "^2.0.10",
"pixl-server-user": "^1.0.9",
"pixl-server-web": "^1.1.7",
"pixl-server-api": "^1.0.2",
"pixl-server-user": "^1.0.9"
"pixl-tools": "^1.0.23",
"pixl-webapp": "^1.0.17",
"shell-quote": "1.6.1",
"socket.io": "1.7.3",
"socket.io-client": "1.7.3",
"uglify-js": "2.8.22",
"uncatch": "^1.0.0",
"zxcvbn": "3.5.0"
},
"devDependencies": {
"pixl-unit": "^1.0.10"
}
}
}
9 changes: 8 additions & 1 deletion sample_conf/setup.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@
"params": [
{ "id":"script", "type":"textarea", "rows":10, "title":"Script Source", "value": "#!/bin/sh\n\n# Enter your shell script code here" },
{ "id":"annotate", "type":"checkbox", "title":"Add Date/Time Stamps to Log", "value": 0 },
{ "id":"json", "type":"checkbox", "title":"Interpret JSON in Output", "value": 0 }
{ "id":"json", "type":"checkbox", "title":"Interpret JSON in Output", "value": 0 },
{"type":"select","id":"lang","title":"syntax","items":["shell","powershell","javascript","python","groovy"],"value":"shell"},
{"type":"select","id":"theme","title":"theme","items":["default","gruvbox-dark","solarized light","solarized dark","darcula"],"value":"default"},
{"type":"checkbox","id":"tty","title":"use terminal emulator (script tool is required)","value":0}
]
} ],
[ "listPush", "global/plugins", {
Expand Down Expand Up @@ -106,6 +109,10 @@
[ "symlinkCompress", "node_modules/zxcvbn/dist/zxcvbn.js", "htdocs/js/external/" ],
[ "symlinkCompress", "node_modules/zxcvbn/dist/zxcvbn.js.map", "htdocs/js/external/" ],
[ "symlinkCompress", "node_modules/chart.js/dist/Chart.min.js", "htdocs/js/external/" ],

[ "symlinkCompress", "node_modules/ansi_up/ansi_up.js", "htdocs/js/external/" ],
[ "symlinkCompress", "node_modules/ansi_up/ansi_up.js.map", "htdocs/js/external/" ],
[ "symlinkCompress", "node_modules/codemirror", "htdocs/codemirror" ],

[ "symlinkCompress", "node_modules/font-awesome/css/font-awesome.min.css", "htdocs/css/" ],
[ "symlinkCompress", "node_modules/font-awesome/css/font-awesome.css.map", "htdocs/css/" ],
Expand Down

0 comments on commit 162c885

Please sign in to comment.