Skip to content
This repository has been archived by the owner on Jul 16, 2019. It is now read-only.
/ bitnotify Public archive

Send email notification after change on your bitcoin wallet or bip44 account

Notifications You must be signed in to change notification settings

ondrejsika/bitnotify

Repository files navigation

BitNotify

Send email notification after change on your bitcoin wallet or bip44 account

Tips are welcome to address 1DhDxyquETrhKk3m6TkHreegr3yFmf8FkB

Installation

Setup base project

git clone git@github.com:ondrejsika/bitnotify.git
cd bitnotify
virtualenv .env
source .env/bin/activate
pip install -e .
./manage.py migrate

Run in gunicorn

gunicorn wsgi -b 0.0.0.0:9999

Setup cron job

# add to your crontab
* * * * * cd /home/projects/bitnotify && .env/bin/python manage.py bitnotify_cron

Docker Installation

Setup

git clone git@github.com:ondrejsika/bitnotify.git
cd bitnotify
./docker-build.sh
cp settings_local--template.py settings_local.py
# vim settings_local.py

run

docker run --name bitnotify -p 9999:80 -v `pwd`/db:/app/db/ -v `pwd`/settings_local.py:/app/settings_local.py ondrejsika/bitnotify

and setup cron

# add to your crontab
* * * * * docker exec -ti bitnotify python manage.py bitnotify_cron

Live version

http://bitnotify.sikaapp.cz

Change log

v0.1.0

  • first working release
  • only single wallet support
  • without registration and front-end

About

Send email notification after change on your bitcoin wallet or bip44 account

Resources

Stars

Watchers

Forks

Packages

No packages published