Compare commits
7
Commits
635acf2b41
..
0.0.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e569c84c9d | ||
|
|
4ff8ff2aac | ||
|
|
80085a94d3 | ||
|
|
c347796c29 | ||
|
|
6dbec68894 | ||
|
|
661b4ebdb0 | ||
|
|
ee51dc4dba |
Vendored
+1
-1
@@ -1 +1 @@
|
||||
webPipeline(name: 'laundry-backend', phpVersion: '8.3')
|
||||
vitePipeline(name: 'laundry-backend', phpVersion: '8.3')
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
```cmd
|
||||
/c/wamp64/bin/php/php8.3.28/php.exe artisan serve
|
||||
vite
|
||||
npm run dev
|
||||
/c/wamp64/bin/php/php8.3.28/php.exe artisan queue:work
|
||||
```
|
||||
|
||||
|
||||
+5
-1
@@ -1,4 +1,4 @@
|
||||
APP_NAME=Laverie
|
||||
APP_NAME=laundry-backend
|
||||
APP_ENV=local
|
||||
APP_KEY=
|
||||
APP_DEBUG=true
|
||||
@@ -38,8 +38,12 @@ SESSION_DOMAIN=null
|
||||
BROADCAST_CONNECTION=log
|
||||
FILESYSTEM_DISK=local
|
||||
QUEUE_CONNECTION=redis
|
||||
# En production sans Redis (VPS Ansible) : database
|
||||
# QUEUE_CONNECTION=database
|
||||
|
||||
CACHE_STORE=redis
|
||||
# En production sans Redis (VPS Ansible) : database
|
||||
# CACHE_STORE=database
|
||||
# CACHE_PREFIX=
|
||||
|
||||
MEMCACHED_HOST=127.0.0.1
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
"description": "The skeleton application for the Laravel framework.",
|
||||
"keywords": ["laravel", "framework"],
|
||||
"license": "MIT",
|
||||
"version": "0.0.2",
|
||||
"require": {
|
||||
"php": "^8.3",
|
||||
"inertiajs/inertia-laravel": "^2.0",
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
"$schema": "https://www.schemastore.org/package.json",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"version": "0.0.2",
|
||||
"scripts": {
|
||||
"prod": "vite build",
|
||||
"dev": "vite"
|
||||
|
||||
+14
-3
@@ -11,6 +11,17 @@ Artisan::command('inspire', function () {
|
||||
$this->comment(Inspiring::quote());
|
||||
})->purpose('Display an inspiring quote');
|
||||
|
||||
Schedule::job(new CheckNoShowBookings)->everyFiveMinutes();
|
||||
Schedule::job(new RefreshOfflineMachines)->everyFiveMinutes();
|
||||
Schedule::job(new GenerateDailyStats)->dailyAt('01:00');
|
||||
Schedule::job(new CheckNoShowBookings)
|
||||
->everyFiveMinutes()
|
||||
->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