Browse Source

Rearrange server files

master
Samuel Sloniker 3 years ago
parent
commit
d82a9c630a
  1. 15
      server/README.md
  2. 0
      server/utils/pwhash.py
  3. 0
      server/ws_server/backends/port8080.py
  4. 0
      server/ws_server/backends/saas.py
  5. 0
      server/ws_server/backends/x11.py
  6. 0
      server/ws_server/conf.txt
  7. 0
      server/ws_server/imgproc.py
  8. 0
      server/ws_server/parse_config.py
  9. 0
      server/ws_server/requirements.txt
  10. 0
      server/ws_server/ubuntu_pkgs.txt
  11. 0
      server/ws_server/wss.py

15
server/README.md

@ -7,6 +7,10 @@ On its own, the server is useless; it requires HamClock, available at
http://clearskyinstitute.com/ham/HamClock/ (installed on the same machine as
the HCRA server), and the HCRA client (see `../client`).
The server code is in the `ws_server` directory; unless otherwise noted, all
commands and instructions assume you have `cd`ed into that directory.
Utilities for server configuration etc. are in the `utils` directory.
## Installation
The server itself does not need to be installed; it is simply run with
@ -25,13 +29,15 @@ The server itself does not need to be installed; it is simply run with
#### Other distros
Unfortunately, I only have Mint computers, so I can't help with other
distros.
I only have Mint and Ubuntu computers, so I can't give package names for other
distros. If you get it working on another distro, please create a pull request
adding instructions to this file!
You will need the following:
* Python 3
* `pip` (for Python 3)
* ImageMagick 6
* X11 development headers
* `Xvfb`
* `xdotool`
* `xwd`
@ -94,4 +100,5 @@ and HamClock. Has no effect with the `port8080` backend.
### `password_argon2`
Argon2-hashed password. Use `pwhash.py` to generate a hashed password.
Argon2-hashed password. Use `pwhash.py` (in `utils`, not `ws_server`) to
generate a hashed password.

0
server/pwhash.py → server/utils/pwhash.py

0
server/backends/port8080.py → server/ws_server/backends/port8080.py

0
server/backends/saas.py → server/ws_server/backends/saas.py

0
server/backends/x11.py → server/ws_server/backends/x11.py

0
server/conf.txt → server/ws_server/conf.txt

0
server/imgproc.py → server/ws_server/imgproc.py

0
server/parse_config.py → server/ws_server/parse_config.py

0
server/requirements.txt → server/ws_server/requirements.txt

0
server/ubuntu_pkgs.txt → server/ws_server/ubuntu_pkgs.txt

0
server/wss.py → server/ws_server/wss.py

Loading…
Cancel
Save