TTS-Talker / utils /clear_results.sh
Quang Long
update docker-compose, dockerfile, setup cronjob, fix generate audio
1dce2dd
#!/bin/sh
# Xóa toàn bộ dữ liệu trong thư mục /app/results vào 10h tối mỗi ngày
# Thêm dòng sau vào crontab khi build docker
# 0 22 * * * /app/clear_results.sh
rm -rf /app/results/*
echo "[CRON] Đã xóa dữ liệu trong /app/results lúc $(date)" >> /app/clear_results.log
rm -rf /app/tts_cache/*
echo "[CRON] Đã xóa dữ liệu trong /app/tts_cache lúc $(date)" >> /app/clear_tts_cache.log