The back-end websocket server for wowlet.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Go to file
tobtoht ea06a781a6
CCS: use API
3 years ago
data Temporarily remove out of sync node 3 years ago
fapi CCS: use API 3 years ago
utils Initial commit 4 years ago
.gitignore Initial commit 4 years ago
Dockerfile Add Dockerfile 4 years ago
LICENSE Initial commit 4 years ago
README.md Add supervisor cfg 4 years ago
requirements.txt Initial commit 4 years ago
run.py Initial commit 4 years ago
settings.py_example Add some more settings 4 years ago

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"