blob: a8dd6cec5bc843f6df6c0d589f200b4fd444e2b9 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/bash
bun run consumer/index.ts \
--sourcequeue=$SOURCE_QUEUE \
--storagetable=$STORAGE_TABLE \
--storagebucket=$STORAGE_BUCKET \
--storageprefix=$STORAGE_PREFIX \
2>&1 \
| tee "runlogs/consumer-$(date).log"
|