The Price Alert App is a Django application designed to send email alerts when the Bitcoin (BTC) price hits a specified target value. This application uses the Pyth Network API to fetch the latest BTC price and allows users to set their alert preferences via a web interface.
- Fetches real-time BTC prices from the Pyth Network API.
- Allows users to set target BTC prices and receive email alerts when the target price is reached.
- Web interface for setting up and managing alerts.
Python Django requests django-environ SQLite django-cron redis
git clone https://github.com/irushub/alert_app
cd alert_app
python manage.py migrate
Start redis server
redis-server
Ping the redis server to check whether its online
ping redis-cli
Start the Django development server
python manage.py runserver
python manage.py runcrons