12 lines
176 B
Bash
Executable File
12 lines
176 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# script/dev_queue: Run the queue with entr if available
|
|
|
|
set -e
|
|
|
|
if [[ `command -v entr` ]]; then
|
|
find atst | entr -r flask rq worker
|
|
else
|
|
flask rq worker
|
|
fi
|