diff options
| -rw-r--r-- | conf/crontab_mastodon | 7 | ||||
| -rw-r--r-- | scripts/install | 11 |
2 files changed, 4 insertions, 14 deletions
diff --git a/conf/crontab_mastodon b/conf/crontab_mastodon index 972cc3c..f6794fb 100644 --- a/conf/crontab_mastodon +++ b/conf/crontab_mastodon @@ -1,3 +1,4 @@ -@hourly cd /opt/__APP__/live && RAILS_ENV=production /opt/__APP__/.rbenv/shims/bundle exec rake mastodon:media:clear -@hourly cd /opt/__APP__/live && RAILS_ENV=production /opt/__APP__/.rbenv/shims/bundle exec rake mastodon:push:refresh -@hourly cd /opt/__APP__/live && RAILS_ENV=production /opt/__APP__/.rbenv/shims/bundle exec rake mastodon:feeds:clear
\ No newline at end of file +@daily __APP__ cd /opt/__APP__/live && RAILS_ENV=production /opt/__APP__/.rbenv/shims/bundle exec rake mastodon:media:clear +@daily __APP__ cd /opt/__APP__/live && RAILS_ENV=production /opt/__APP__/.rbenv/shims/bundle exec rake mastodon:push:refresh +@daily __APP__ cd /opt/__APP__/live && RAILS_ENV=production /opt/__APP__/.rbenv/shims/bundle exec rake mastodon:feeds:clear +@daily __APP__ cd /opt/__APP__/live && RAILS_ENV=production /opt/__APP__/.rbenv/shims/bundle exec rake mastodon:users:clear
\ No newline at end of file diff --git a/scripts/install b/scripts/install index 1c964b7..75c2cfd 100644 --- a/scripts/install +++ b/scripts/install @@ -154,23 +154,12 @@ RAILS_ENV=production bin/bundle exec rails db:setup RAILS_ENV=production bin/bundle exec rails --trace assets:precompile CCOMMANDS -# TODO: Doesn't work for the moment, -# Mastodon need a user for creating an administator account -# Create admin user -# Create confirm email -sudo su - $app <<ACOMMANDS -pushd ~/live -# RAILS_ENV=production bin/bundle exec rails mastodon:make_admin USERNAME=$admin_mastodon -# RAILS_ENV=production bin/bundle exec rails mastodon:confirm_email USER_EMAIL=$admin_mastodon@$domain -ACOMMANDS - # init rbenv & create bundle sudo su - $app <<BCOMMANDS . ~/.profile type rbenv BCOMMANDS - # Add Services pushd $(popd) |
