You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You probably want to backup database, assets and files at the same time, so probably make sense to have a script that runs all of them, and optionally sync them to S3 at the same time?
That means you don't have to keep 4 cron jobs for every site.
The text was updated successfully, but these errors were encountered:
@sjelfull I created a separate script called sync that contains these lines:
#!/bin/bash
bash pull_assets.sh
bash pull_db.sh
You can obviously add more commands if you want to backup/run other things.
But then I just cd into scripts and run bash sync and then it runs these together which is effectively running a single backup script.
You probably want to backup database, assets and files at the same time, so probably make sense to have a script that runs all of them, and optionally sync them to S3 at the same time?
That means you don't have to keep 4 cron jobs for every site.
The text was updated successfully, but these errors were encountered: