Skip to content

Commit

Permalink
suppress background task output in development
Browse files Browse the repository at this point in the history
  • Loading branch information
Meow committed Jul 3, 2024
1 parent 01da4f4 commit 1795e98
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docker/app/run-development
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ export CARGO_HOME=/srv/philomena/.cargo

background() {
while :; do
mix run -e 'Philomena.Release.update_channels()'
mix run -e 'Philomena.Release.verify_artist_links()'
mix run -e 'Philomena.Release.update_stats()'
mix run -e 'Philomena.Release.clean_moderation_logs()'
mix run -e 'Philomena.Release.generate_autocomplete()'
mix run -e 'Philomena.Release.update_channels()' > /dev/null
mix run -e 'Philomena.Release.verify_artist_links()' > /dev/null
mix run -e 'Philomena.Release.update_stats()' > /dev/null
mix run -e 'Philomena.Release.clean_moderation_logs()' > /dev/null
mix run -e 'Philomena.Release.generate_autocomplete()' > /dev/null

sleep 300
done
Expand Down

0 comments on commit 1795e98

Please sign in to comment.