Go to file
lza_menace 8f6be97cb7 adding sample crontab file for tracking 2020-10-15 00:26:44 -07:00
bin adjust wallet setup script to use local dir 2020-10-14 21:25:43 -07:00
suchwow add print stmt for reddit posting 2020-10-15 00:16:29 -07:00
.gitignore fuck this docker shit, gunicorn local 2020-08-11 00:15:11 -07:00
README.md setup wallet functionality for posts and extending templates 2020-08-09 22:47:53 -07:00
crontab.txt adding sample crontab file for tracking 2020-10-15 00:26:44 -07:00
requirements.txt setup praw and commands to post to reddit 2020-10-14 23:51:53 -07:00

README.md

SuchWow!

TBD

Setup

# initialize new wallet and retain seed
docker run --rm -it --name suchwow-wallet-init \
  -v $(pwd)/data:/root \
  lalanza808/wownero \
  wownero-wallet-cli \
    --daemon-address https://node.suchwow.xyz:443 \
    --generate-new-wallet /root/wow \
    --password zzzzzz \

# setup rpc process
docker run --rm -d --name suchwow-wallet \
  -v $(pwd)/data:/root \
  -p 8888:8888 \
  lalanza808/wownero \
  wownero-wallet-rpc \
    --daemon-address https://node.suchwow.xyz:443 \
    --wallet-file /root/wow \
    --password zzzzzz \
    --rpc-bind-port 8888 \
    --rpc-bind-ip 0.0.0.0 \
    --confirm-external-bind \
    --rpc-login xxxx:yyyy \
    --log-file /root/rpc.log

# install python dependencies
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

# setup secrets in config file outside of git
cp suchwow/config.example.py suchwow/config.py
vim !$