https://github.com/healeycodes/pleasebeup
Website monitoring and alert system (a one-day hackday project)
https://github.com/healeycodes/pleasebeup
Last synced: 3 months ago
JSON representation
Website monitoring and alert system (a one-day hackday project)
- Host: GitHub
- URL: https://github.com/healeycodes/pleasebeup
- Owner: healeycodes
- License: mit
- Created: 2020-05-28T20:08:41.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T22:30:54.000Z (over 3 years ago)
- Last Synced: 2024-10-05T17:43:10.019Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 323 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pleasebeup
This was a hackday project that I built in one day with @samlader.
It's a **website monitoring and alert system**.


If your website stops responding to our pings you get an email alert. Our stretch goal was SMS alerts (but we didn't make it).
## Rough install/running steps
In case I want to pick this up again:
Install:
```
cd .
npm install
cd task
pip install -r requirements
```
Run:
```
npm run start
docker-compose up -d task
```
and then the following tasks need to be running:
```
celery -A app worker --loglevel=info
celery -A app beat --loglevel=info
```
🧙♂️