README.md
ASCII text
Echo Status Tracker
This is a basic web service status tracker. It stores results in a database and provides a simple web interface to view the results, including a graph of the status over time.
It is built using Python, Flask, and SQLAlchemy, connected to a PostgreSQL
server. For task queuing, it uses Celery with Redis (actually, the free fork
KeyDB) as the broker. To ping the services it uses httpx
.
Made in 3 days for the programming competition IT Engineering Challenge, 2024.
1# Echo Status Tracker 2 3This is a basic web service status tracker. It stores results in a database and 4provides a simple web interface to view the results, including a graph of the 5status over time. 6 7It is built using Python, Flask, and SQLAlchemy, connected to a PostgreSQL 8server. For task queuing, it uses Celery with Redis (actually, the free fork 9KeyDB) as the broker. To ping the services it uses `httpx`. 10 11Made in 3 days for the programming competition 12[IT Engineering Challenge](https://itec.ro/), 2024. 13