docker-cartojw/sync_tables_trigger.sh

9 lines
112 B
Bash
Raw Normal View History

#!/bin/bash
while :
do
sleep $SYNC_TABLES_INTERVAL
cd /cartodb
bundle exec rake cartodb:sync_tables[true]
done