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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
Go to file
lza_menace ff30728863
making graphs n shit
3 years ago
bin add cmd to delete posts that are too shit 3 years ago
suchwow making graphs n shit 3 years ago
.gitignore fuck this docker shit, gunicorn local 4 years ago
Makefile mod link, button fix, add makefile 3 years ago
README.md setup wallet functionality for posts and extending templates 4 years ago
crontab.txt adding sample crontab file for tracking 4 years ago
requirements.txt add qr codes to posts 3 years ago

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 !$