Heroku の Schedule アプリに、websolr インデックスを再構築するためのスケジュールされたコマンドがあります。
heroku run python manage.py rebuild_index
問題は、コマンドがユーザーからの入力を必要とするため、自動的に正常に実行されないことです。
WARNING: This will irreparably remove EVERYTHING from your search index in connection 'default'.
Your choices after this are to restore from backups or rebuild via the `rebuild_index` command.
Are you sure you wish to continue? [y/N]
Heroku スケジューラ アプリを使用してインデックスを再構築する他の方法はありますか、またはコマンドで「y」を自動的に通知して、スケジューラのコマンドでインデックスが定期的に構築されるようにする方法はありますか?