1
0
Fork 0
mirror of synced 2024-05-19 12:12:36 +12:00
appwrite/bin/worker-functions

10 lines
432 B
Plaintext
Raw Normal View History

2020-07-21 08:05:36 +12:00
#!/bin/sh
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-06-20 09:46:20 +12:00
INTERVAL=0.1 QUEUE='v1-functions' APP_INCLUDE='/usr/src/code/app/workers/functions.php' php /usr/src/code/vendor/bin/resque -dopcache.preload=opcache.preload=/usr/src/code/app/preload.php