diff --git a/baldinof/roadrunner-bundle/1.2/config/packages/baldinof_road_runner.yaml b/baldinof/roadrunner-bundle/1.2/config/packages/baldinof_road_runner.yaml new file mode 100644 index 00000000..65267f38 --- /dev/null +++ b/baldinof/roadrunner-bundle/1.2/config/packages/baldinof_road_runner.yaml @@ -0,0 +1,18 @@ +baldinof_road_runner: + # The kernel is preserved between requests. Change this to `true` + # if you want to reboot it, and use a fresh container on each request. + should_reboot_kernel: false + + # Integrations are automatically detected, depending on installed bundle & current configuration + # See https://github.com/baldinof/roadrunner-bundle#integrations + default_integrations: true + + # Allow to send prometheus metrics to the master RoadRunner process, + # via a `Spiral\RoadRunner\MetricsInterface` service. + # See https://github.com/baldinof/roadrunner-bundle#metrics + metrics_enabled: false + + # You can use middlewares to manipulate PSR requests & responses. + # See https://github.com/baldinof/roadrunner-bundle#middlewares + # middlewares: + # - App\Middleware\YourMiddleware diff --git a/baldinof/roadrunner-bundle/1.2/manifest.json b/baldinof/roadrunner-bundle/1.2/manifest.json new file mode 100644 index 00000000..2bbe3132 --- /dev/null +++ b/baldinof/roadrunner-bundle/1.2/manifest.json @@ -0,0 +1,15 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "copy-from-package": { + ".rr.yaml": ".rr.yaml", + ".rr.dev.yaml": ".rr.dev.yaml" + }, + "bundles": { + "Baldinof\\RoadRunnerBundle\\BaldinofRoadRunnerBundle": ["all"] + }, + "gitignore": [ + "/bin/rr" + ] +} diff --git a/baldinof/roadrunner-bundle/1.2/post-install.txt b/baldinof/roadrunner-bundle/1.2/post-install.txt new file mode 100644 index 00000000..6f4781be --- /dev/null +++ b/baldinof/roadrunner-bundle/1.2/post-install.txt @@ -0,0 +1,8 @@ + + What's next for RoadRunner Bundle + + + * Download RoadRunner locally: vendor/bin/rr get --location bin/ + * Run your application: bin/rr serve -c .rr.dev.yaml --debug + * For production, use: bin/rr serve + * Visit http://localhost:8080