1
0
Fork 0
mirror of synced 2024-06-27 02:31:04 +12:00
appwrite/bin/worker-mails

13 lines
412 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
QUEUE='v1-mails'
APP_INCLUDE='/usr/src/code/app/workers/mails.php'
php /usr/src/code/vendor/bin/resque -dopcache.preload=opcache.preload=/usr/src/code/app/preload.php