26b / laravel-static-site
Laravel package to burn static sites
dev-main
2023-04-12 11:37 UTC
Requires
- php: ^8.0
- spatie/laravel-package-tools: ^1.14
Requires (Dev)
- orchestra/testbench: ^8.0
This package is auto-updated.
Last update: 2024-11-12 14:56:50 UTC
README
This package will help you burn some pages to generate a static site for CDN deployment.
Configuration
To customize the routes you want to burn, publish the configuration file.
php artisan vendor:publish --tag=static-site-config
Add a disk to your filesystems
configuration.
For development
'static-site' => [ 'driver' => 'local', 'root' => storage_path('app/public/static-site'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', 'throw' => false, ],
For production:
'static-site' => [ 'driver' => 's3', // 👈 'key' => env('CLOUDFLARE_R2_ACCESS_KEY'), 'secret' => env('CLOUDFLARE_R2_SECRET_KEY'), 'region' => 'auto', 'bucket' => env('CLOUDFLARE_R2_BUCKET'), 'endpoint' => env('CLOUDFLARE_R2_ENDPOINT'), 'url' => env('CLOUDFLARE_R2_URL'), ],
Running
To start burning and deploying run the following commands.
yarn run build
php artisan burn:assets
php artisna burn:site
Testing locally
For quick testing of what was burned you could start a php server and browse around.
php -S localhost:8888 -t storage/app/public/static-site/