Created
May 26, 2016 07:26
-
-
Save 0x3bfc/903aecd3243464134b91b150e5de8042 to your computer and use it in GitHub Desktop.
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
| { | |
| "configuration": { | |
| "host" : "0.0.0.0", | |
| "port" : 9000, | |
| "endpoint": "paraview", | |
| "content": "C:/Program Files (x86)/ParaView 4.1.0/share/paraview-4.1/www", | |
| "proxy_file" : "/../proxy.txt", | |
| "sessionURL" : "wss://${host}:${port}/proxy?sessionId=${id}/", | |
| "timeout" : 5, | |
| "log_dir" : "C:/Program Files (x86)/pythonLauncher/viz-logs", | |
| "upload_dir" : "C:/Program Files (x86)/pythonLauncher/uploadDirectory", | |
| "fields" : ["file", "host", "port", "updir"] | |
| }, | |
| "resources" : [ { "host" : "MY-APACHER-SERVER", "port_range" : [9001, 9005] } ], | |
| "properties" : { | |
| "build_dir" : "", | |
| "python_exec" : "pvpython.exe", | |
| "WWW" : "C:/Program Files (x86)/ParaView 4.1.0/share/paraview-4.1/www", | |
| "source_dir": "/.../src" | |
| }, | |
| "apps": { | |
| "pipeline": { | |
| "cmd": [ | |
| "\"C:\\Program Files (x86)\\ParaView 4.1.0\\bin\\pvpython.exe\"", " \"C:/Program Files (x86)/ParaView 4.1.0/lib/paraview-4.1/site-packages/paraview/web/pv_web_visualizer.py\" ", | |
| " --port ", " ${port} ", "--data-dir", " \"C:/Program Files (x86)/pythonLauncher/data\" ", " -f " | |
| ], | |
| "ready_line" : "Starting factory" | |
| }, | |
| "visualizer": { | |
| "cmd": [ | |
| "${python_exec}", " 'C:/Program Files (x86)/ParaView 4.1.0/lib/paraview-4.1/site-packages/paraview/web/pv_web_visualizer.py' ", | |
| "--port", "${port}", "--data-dir", " 'C:/Program Files (x86)/pythonLauncher/data' ", "-f", "--authKey", "${secret}" | |
| ], | |
| "ready_line" : "Starting factory" | |
| }, | |
| "loader": { | |
| "cmd": [ | |
| "${python_exec}", " C:/Program Files (x86)/ParaView 4.1.0/lib/paraview-4.1/site-packages/paraview/web/pv_web_file_loader.py ", | |
| "--port", "${port}", "--data-dir", " C:/Program Files (x86)/pythonLauncher/data ", "-f", "--authKey", "${secret}" | |
| ], | |
| "ready_line" : "Starting factory" | |
| }, | |
| "data_prober": { | |
| "cmd": [ | |
| "${python_exec}", " C:/Program Files (x86)/ParaView 4.1.0/lib/paraview-4.1/site-packages/paraview/web/pv_web_data_prober.py ", | |
| "--port", "${port}", "--data-dir", " C:/Program Files (x86)/pythonLauncher/data ", "-f", "--authKey", "${secret}" | |
| ], | |
| "ready_line" : "Starting factory" | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment