Skip to content

Commit

Permalink
Model Caching and Redis Upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
rockhopsoft committed Oct 20, 2021
1 parent 4631d6c commit ecb7abb
Show file tree
Hide file tree
Showing 117 changed files with 5,876 additions and 2,711 deletions.
Binary file modified .DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ src/Views/.DS_Store
.DS_Store
.DS_Store
.DS_Store
.DS_Store
.DS_Store
.DS_Store
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,7 @@ Next, install Laravel's out-of-the-box user authentication tools, Survloop, and
```
% php artisan key:generate
% php artisan cache:clear
% COMPOSER_MEMORY_LIMIT=-1 composer require laravel/ui paragonie/random_compat mpdf/mpdf rockhopsoft/survloop flexyourrights/openpolice
% php artisan ui vue --auth
% COMPOSER_MEMORY_LIMIT=-1 composer require mpdf/mpdf rockhopsoft/survloop flexyourrights/openpolice
% nano composer.json
```

Expand All @@ -95,6 +94,7 @@ $ nano composer.json
...
"FlexYourRights\\OpenPolice\\": "vendor/flexyourrights/openpolice/src/",
"RockHopSoft\\Survloop\\": "vendor/rockhopsoft/survloop/src/",
"Predis\\": "vendor/predis/predis/src/",
}
...
}, ...
Expand All @@ -108,6 +108,7 @@ $ nano config/app.php
...
'providers' => [
...
App\Providers\FortifyServiceProvider::class,
FlexYourRights\OpenPolice\OpenPoliceServiceProvider::class,
RockHopSoft\Survloop\SurvloopServiceProvider::class,
...
Expand All @@ -128,9 +129,9 @@ If installing on a server, you might also need to fix some permissions before th

Clear caches and publish the package migrations...
```
% php artisan config:cache
% php artisan route:cache
% php artisan view:cache
% php artisan config:clear
% php artisan route:clear
% php artisan view:clear
% echo "0" | php artisan vendor:publish --force
% composer dump-autoload
% curl http://myopenpolice.local/css-reload
Expand Down
Loading

0 comments on commit ecb7abb

Please sign in to comment.