You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- This PR implements additional server functionality for
the webviewer, enabling local visualizations even though
the webviewer is run on a remote machine.
- Specifically, the user can specify whether
the webviewer should be run in server mode, and on which port,
thereby enabling SSH port forwarding.
Then, on your local machine, forward the bound port 12345:
74
+
```
75
+
ssh -N -L 12345:localhost:12345 user@remote
76
+
```
77
+
and open the local browser at:
78
+
```
79
+
http://localhost:12345
80
+
```
81
+
82
+
68
83
## Dependency Management
69
84
70
85
To ease the dependency update process [`pip-tools`](https://github.com/jazzband/pip-tools) is utilized. To create the necessary [`requirements.txt`](./requirements.txt) file simply execute
0 commit comments