set up cache

This commit is contained in:
Dan Jones 2022-02-27 14:22:21 -06:00
commit cccd64580c
3 changed files with 23 additions and 0 deletions

12
config/cache.php Normal file
View file

@ -0,0 +1,12 @@
<?php
return [
'default' => 'file',
'stores' => [
'file' => [
'driver' => 'file',
'path' => storage_path('framework/cache/data'),
],
],
];

9
storage/framework/.gitignore vendored Normal file
View file

@ -0,0 +1,9 @@
compiled.php
config.php
down
events.scanned.php
maintenance.php
routes.php
routes.scanned.php
schedule-*
services.json

2
storage/framework/cache/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
*
!.gitignore