Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
aglipanci committed May 10, 2020
1 parent 8d23fcb commit a34aa5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
build
composer.lock
docs
vendor
coverage
.phpunit.result.cache
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ return [
'forge' => [
'token' => env('FORGE_API_TOKEN'),
'servers' => [
'refresh_interval_in_seconds' => 60
'refresh_interval_in_seconds' => 3600
],
'recent_events' => [
'refresh_interval_in_seconds' => 60
Expand All @@ -43,8 +43,8 @@ In `app\Console\Kernel.php` you should schedule the below to run every `x` minut

protected function schedule(Schedule $schedule)
{
$schedule->command(aglipanci\ForgeTile\Commands\FetchForgeServersCommand::class)->everyThirtyMinutes();
$schedule->command(aglipanci\ForgeTile\Commands\FetchForgeRecentEventsCommand::class)->everyThirtyMinutes();
$schedule->command(aglipanci\ForgeTile\Commands\FetchForgeServersCommand::class)->hourly();
$schedule->command(aglipanci\ForgeTile\Commands\FetchForgeRecentEventsCommand::class)->everyMinute();
}
```

Expand Down

0 comments on commit a34aa5d

Please sign in to comment.