Starter kits
Jetstream & breeze
Install
laraboot task add @core/laravel-starterkit-buildpack --format=file -vvvDependencies
This task requires NodeJS buildpack so make sure you install it along beforehand.
laraboot task add nodejs \
--imageUri=gcr.io/paketo-buildpacks/nodejs \
--format=external \
--prependConfigure
The configuration for this task is located in buildpack.yml at the root of your project.
laravel-starterkit:
jetstream:
enabled: true
teams: true
stack: react
breeze:
enabled: true
stack: vueConsiderations
When you run the
buildcommand on a Laravel application, the resulting OCI image will contain two tasks. One for the laravel application and the other targeting thenodeprocess.@laraboot-io/clidoes not support multiple tasks for theruncommand yet so you'll need to specify which one you want to usePass
--pack-params default-process=taskto theruncommand to use your Laravel application (PHP) otherwise the default one is NodeJS.
Last updated
Was this helpful?