-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #558 from bugsnag/next
v2.29.0 Release
- Loading branch information
Showing
96 changed files
with
3,677 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'bugsnag-maze-runner', git: 'https://github.com/bugsnag/maze-runner', tag: 'v7.18.0' | ||
gem "bugsnag-maze-runner", "~> 9.14" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
ARG PHP_VERSION | ||
FROM php:$PHP_VERSION | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
git \ | ||
unzip \ | ||
wget \ | ||
zip | ||
|
||
WORKDIR /app | ||
|
||
COPY . . | ||
COPY --from=composer /usr/bin/composer /usr/local/bin/composer | ||
|
||
RUN curl https://frankenphp.dev/install.sh | sh | ||
RUN mv frankenphp /usr/local/bin/ | ||
|
||
RUN cp .env.example .env | ||
RUN docker-php-ext-install sockets pcntl posix | ||
RUN composer install --no-dev | ||
RUN composer require laravel/octane | ||
RUN php artisan key:generate | ||
RUN php artisan octane:install --server=frankenphp | ||
|
||
# create database & apply migrations | ||
RUN touch database/database.sqlite && php artisan migrate --no-interaction | ||
|
||
CMD php -d variables_order=EGPCS artisan octane:start --server=frankenphp --host=0.0.0.0 --admin-port=2019 --port=8000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
ARG PHP_VERSION | ||
FROM php:$PHP_VERSION | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
git \ | ||
unzip \ | ||
wget \ | ||
zip | ||
|
||
WORKDIR /app | ||
|
||
COPY . . | ||
COPY --from=composer /usr/bin/composer /usr/local/bin/composer | ||
|
||
RUN cp .env.example .env | ||
RUN docker-php-ext-install sockets pcntl posix | ||
RUN composer install --no-dev | ||
RUN composer require laravel/octane spiral/roadrunner-cli | ||
RUN ./vendor/bin/rr get-binary | ||
RUN php artisan key:generate | ||
RUN php artisan octane:install --server=roadrunner | ||
|
||
# create database & apply migrations | ||
RUN touch database/database.sqlite && php artisan migrate --no-interaction | ||
|
||
CMD php -d variables_order=EGPCS artisan octane:start --server=roadrunner --host=0.0.0.0 --rpc-port=6001 --port=8000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
ARG PHP_VERSION | ||
FROM php:$PHP_VERSION | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
git \ | ||
unzip \ | ||
wget \ | ||
zip \ | ||
libbrotli-dev | ||
|
||
WORKDIR /app | ||
|
||
COPY . . | ||
COPY --from=composer /usr/bin/composer /usr/local/bin/composer | ||
|
||
RUN cp .env.example .env | ||
RUN docker-php-ext-install sockets pcntl posix | ||
RUN composer install --no-dev | ||
RUN composer require laravel/octane | ||
RUN pecl install swoole | ||
RUN docker-php-ext-enable swoole | ||
RUN php artisan key:generate | ||
RUN php artisan octane:install --server=swoole | ||
|
||
# create database & apply migrations | ||
RUN touch database/database.sqlite && php artisan migrate --no-interaction | ||
|
||
CMD php -d variables_order=EGPCS artisan octane:start --server=swoole --host=0.0.0.0 --rpc-port=6001 --port=8000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 4 | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[*.{yml,yaml}] | ||
indent_size = 2 | ||
|
||
[docker-compose.yml] | ||
indent_size = 4 |
Oops, something went wrong.