8 lines
136 B
Text
8 lines
136 B
Text
|
#! /bin/bash
|
||
|
|
||
|
echo 'Starting notification worker'
|
||
|
|
||
|
cd /
|
||
|
venv/bin/python -m workers.notificationworker
|
||
|
|
||
|
echo 'Notification worker exited'
|