Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
lza_menace 8c014e1292
discord: use link to post instead of direct image
il y a 3 ans
bin add cmd to delete posts that are too shit il y a 3 ans
suchwow discord: use link to post instead of direct image il y a 3 ans
.gitignore fuck this docker shit, gunicorn local il y a 4 ans
README.md setup wallet functionality for posts and extending templates il y a 4 ans
crontab.txt adding sample crontab file for tracking il y a 4 ans
requirements.txt add qr codes to posts il y a 3 ans

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