1#!/bin/bash
2 3# Source the Redis setup script 4source ./scripts/setup-redis.sh
5 6# Trap SIGINT and SIGTERM to cleanup on exit 7trap cleanup_redis SIGINT SIGTERM
8 9# Run the feed worker dev command10npm run dev:worker:feeds
1112# Cleanup after dev command exits13cleanup_redis