This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / scripts / dev-feed-worker.sh
266 B 13 lines
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 command 10npm run dev:worker:feeds 11 12# Cleanup after dev command exits 13cleanup_redis