The back-end websocket server for wowlet.
Go to file
tobtoht 6638a273ef Add more .onion nodes 2020-12-03 16:09:37 +01:00
data Add more .onion nodes 2020-12-03 16:09:37 +01:00
fapi CCS: use API 2020-12-03 16:03:09 +01:00
utils Initial commit 2020-10-03 15:40:18 +02:00
.gitignore Initial commit 2020-10-03 15:40:18 +02:00
Dockerfile Add Dockerfile 2020-11-14 19:42:34 +01:00
LICENSE Initial commit 2020-10-03 15:40:18 +02:00
README.md Add supervisor cfg 2020-10-18 18:07:41 +02:00
requirements.txt Initial commit 2020-10-03 15:40:18 +02:00
run.py Initial commit 2020-10-03 15:40:18 +02:00
settings.py_example Add some more settings 2020-11-14 19:35:31 +01:00

README.md

feather-ws

This is the back-end websocket server for Feather wallet.

  • Python 3 asyncio
  • Quart web framework
  • Redis

Supervisor

Example config.

[program:ws]
directory=/home/feather/feather-ws
command=/home/feather/feather-ws/venv/bin/python run.py
autostart=true
autorestart=true
startsecs=6
stdout_logfile=/home/feather/feather-ws/stdout.log
stdout_logfile_maxbytes=1MB
stdout_logfile_backups=10
stdout_capture_maxbytes=1MB
stderr_logfile=/home/feather/feather-ws/stderr.log
stderr_logfile_maxbytes=1MB
stderr_logfile_backups=10
stderr_capture_maxbytes=1MB
user = feather
environment=
    HOME="/home/feather",
    USER="feather",
    PATH="/home/feather/feather-ws/venv/bin"