Compare commits
4
Commits
6dbec68894
..
0.0.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e569c84c9d | ||
|
|
4ff8ff2aac | ||
|
|
80085a94d3 | ||
|
|
c347796c29 |
@@ -38,8 +38,12 @@ SESSION_DOMAIN=null
|
|||||||
BROADCAST_CONNECTION=log
|
BROADCAST_CONNECTION=log
|
||||||
FILESYSTEM_DISK=local
|
FILESYSTEM_DISK=local
|
||||||
QUEUE_CONNECTION=redis
|
QUEUE_CONNECTION=redis
|
||||||
|
# En production sans Redis (VPS Ansible) : database
|
||||||
|
# QUEUE_CONNECTION=database
|
||||||
|
|
||||||
CACHE_STORE=redis
|
CACHE_STORE=redis
|
||||||
|
# En production sans Redis (VPS Ansible) : database
|
||||||
|
# CACHE_STORE=database
|
||||||
# CACHE_PREFIX=
|
# CACHE_PREFIX=
|
||||||
|
|
||||||
MEMCACHED_HOST=127.0.0.1
|
MEMCACHED_HOST=127.0.0.1
|
||||||
|
|||||||
+1
-1
@@ -5,7 +5,7 @@
|
|||||||
"description": "The skeleton application for the Laravel framework.",
|
"description": "The skeleton application for the Laravel framework.",
|
||||||
"keywords": ["laravel", "framework"],
|
"keywords": ["laravel", "framework"],
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"version": "0.0.1",
|
"version": "0.0.2",
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^8.3",
|
"php": "^8.3",
|
||||||
"inertiajs/inertia-laravel": "^2.0",
|
"inertiajs/inertia-laravel": "^2.0",
|
||||||
|
|||||||
+1
-1
@@ -2,7 +2,7 @@
|
|||||||
"$schema": "https://www.schemastore.org/package.json",
|
"$schema": "https://www.schemastore.org/package.json",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.0.1",
|
"version": "0.0.2",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prod": "vite build",
|
"prod": "vite build",
|
||||||
"dev": "vite"
|
"dev": "vite"
|
||||||
|
|||||||
+14
-3
@@ -11,6 +11,17 @@ Artisan::command('inspire', function () {
|
|||||||
$this->comment(Inspiring::quote());
|
$this->comment(Inspiring::quote());
|
||||||
})->purpose('Display an inspiring quote');
|
})->purpose('Display an inspiring quote');
|
||||||
|
|
||||||
Schedule::job(new CheckNoShowBookings)->everyFiveMinutes();
|
Schedule::job(new CheckNoShowBookings)
|
||||||
Schedule::job(new RefreshOfflineMachines)->everyFiveMinutes();
|
->everyFiveMinutes()
|
||||||
Schedule::job(new GenerateDailyStats)->dailyAt('01:00');
|
->withoutOverlapping()
|
||||||
|
->onOneServer();
|
||||||
|
|
||||||
|
Schedule::job(new RefreshOfflineMachines)
|
||||||
|
->everyFiveMinutes()
|
||||||
|
->withoutOverlapping()
|
||||||
|
->onOneServer();
|
||||||
|
|
||||||
|
Schedule::job(new GenerateDailyStats)
|
||||||
|
->dailyAt('01:00')
|
||||||
|
->withoutOverlapping()
|
||||||
|
->onOneServer();
|
||||||
|
|||||||
Reference in New Issue
Block a user