

- You can see that containers are up and running.

Step 1 : Run test
cd apps/tests
bun test # add users - [email protected] / [email protected]

Step 2 : Check if migration happened / admin got seeded
docker exec -it <POSTGRES_CONTAINER_ID> sh
psql -U postgres -d postgres_go
\dt
SELECT * FROM users;
SELECT * FROM region;

docker compose logs migrate

Step 3 : Check if events are pushed to monitoring_stream
docker exec -it <REDIS_CONTAINER_ID> sh
# Check MONITORING_STREAM
XREAD STREAMS betteruptime:websites-ticks 0-0

Step 4 : Check if worker-monitoring picks up task from monitoring-stream
