watcher code added. as a reference.

This commit is contained in:
Dooho Yi 2020-11-29 22:33:35 +00:00
parent 0c35b9d430
commit a0a0003df6

View file

@ -0,0 +1,30 @@
#!/bin/bash
#set minimal required path
export PATH=$PATH:$HOME/.local/bin
#load pyenv of 'nextcloud' user
export PYENV_ROOT="/home/nextcloud/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
if command -v pyenv 1>/dev/null 2>&1; then
eval "$(pyenv init -)"
fi
eval "$(pyenv virtualenv-init -)"
#load env for the proj. 'distribusi-foh'
pyenv shell distribusi-foh
#change directory
cd /home/nextcloud/distribusi-foh
#start to watch.. (with thumbnailing)
# python distribusi/test.py -t -d ./data/
# while inotifywait -e modify,move,create,delete,close_write -r ./data/ ; do
# python distribusi/test.py -t -d ./data/
# done
#start to watch.. (without thumbnailing)
python distribusi/test.py -d ./data/
while inotifywait -e modify,move,create,delete,close_write -r ./data/ ; do
python distribusi/test.py -d ./data/
done