1
0
Fork 0
mirror of synced 2024-06-02 19:04:49 +12:00
appwrite/bin/worker-webhooks

10 lines
417 B
Plaintext
Raw Normal View History

2020-07-21 08:05:36 +12:00
#!/bin/sh
2020-07-06 01:51:20 +12:00
2021-02-01 19:21:42 +13:00
if [ -z "$_APP_REDIS_USER" ] || [ -z "$_APP_REDIS_PASS" ]
2021-01-31 18:24:38 +13:00
then
REDIS_BACKEND="${_APP_REDIS_HOST}:${_APP_REDIS_PORT}"
else
2021-02-01 03:56:06 +13:00
REDIS_BACKEND="redis://${_APP_REDIS_USER}:${_APP_REDIS_PASS}@${_APP_REDIS_HOST}:${_APP_REDIS_PORT}"
2021-01-31 18:24:38 +13:00
fi
2021-02-02 01:24:25 +13:00
QUEUE='v1-webhooks' APP_INCLUDE='/usr/src/code/app/workers/webhooks.php' php /usr/src/code/vendor/bin/resque -dopcache.preload=opcache.preload=/usr/src/code/app/preload.php