Skip to content

Commit

Permalink
KR - SaveMeNow - Sauvegarde automatique des données
Browse files Browse the repository at this point in the history
  • Loading branch information
tomas-ryan-lee committed Dec 30, 2023
1 parent a4a6fc8 commit f84d2d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
4 changes: 0 additions & 4 deletions assets/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,3 @@ function parallax() {
parallax.initParallax();
return parallax;
}

// Navigation
// -----------------------------------------------

8 changes: 4 additions & 4 deletions src/Schedule/BackupDatabaseSchedule.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ class BackupDatabaseSchedule implements ScheduleBuilder
public function buildSchedule(Schedule $schedule): void
{
$schedule
->timezone('UTC')
->environments('dev')
->timezone('Europe/Paris')
->environments('prod')
;

$schedule
->addCommand('backup-database')
->description('Sauvegarde les données du site Internet')
->daily()
->at(9)
->monthly()
->at(1)
;
}
}

0 comments on commit f84d2d6

Please sign in to comment.