-
-
Notifications
You must be signed in to change notification settings - Fork 2
feature(app): Implement RoadRunner
stack.
#132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
02dc3a0
feature(app): Implement `RoadRunner` stack.
terabytesoftw 35a88ff
chore: Remove Docker CI workflow file to streamline CI configuration.
terabytesoftw 6e8b813
refactor: Update build configuration and remove unused environment fi…
terabytesoftw f0cda26
fix: Correct indentation in `build.yml` for codeception command execu…
terabytesoftw 1515889
fix: Correct command syntax in `build.yml` for `rr serve` execution.
terabytesoftw fcd887b
fix: Correct command syntax in `build.yml` and add conditional loadin…
terabytesoftw abc1021
fix: Add `YII_C3` environment variable to server configuration in `.r…
terabytesoftw 4612e54
fix: Remove `--coverage-xml` option from codecept run command in buil…
terabytesoftw f9ddfe9
fix: Remove coverage configuration from codeception.yml and update Ph…
terabytesoftw a6a45ba
fix: Update HTTP address configuration in `.rr.yaml` to allow binding…
terabytesoftw 77ff4a5
fix: Refactor codeception command in build.yml to separate execution …
terabytesoftw 61558da
fix: Replace `ArrayHelper::merge` with native `array_merge` in SiteCo…
terabytesoftw 3439c4e
Apply fixes from StyleCI
StyleCIBot c8032de
fix: Add Codeception `C3` configuration to composer.json and include …
terabytesoftw d3a920d
fix: Update Codeception command in build.yml to include coverage gene…
terabytesoftw 5a79179
fix: Enable coverage reporting in `codeception.yml` and include sourc…
terabytesoftw 2db6c73
fix: Remove Codeception coverage configuration and related conditions…
terabytesoftw 8e0af6b
fix: Remove coverage driver configuration from `build.yml`.
terabytesoftw e98721f
fix: Update `README.md` to include `RoadRunner` badge and remove unsu…
terabytesoftw a75352f
fix: Update `README.md` to change `RoadRunner` badge link and remove …
terabytesoftw de0fdbd
Merge branch 'road-runner' into fix-mini-43
terabytesoftw f408e17
Apply fixes from StyleCI
StyleCIBot a6fcad3
fix: Update badge links in `README.md` to reflect the 'road-runner' b…
terabytesoftw b3b9dfb
Merge branch 'fix-mini-43' of github-principal:yii2-extensions/app-ba…
terabytesoftw File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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,42 @@ | ||
version: '3' | ||
rpc: | ||
listen: 'tcp://127.0.0.1:6001' | ||
server: | ||
command: 'php web/index.php' | ||
relay: pipes | ||
env: | ||
YII_C3: true | ||
YII_DEBUG: true | ||
YII_ENV: dev | ||
http: | ||
address: :8080 | ||
|
||
headers: | ||
response: | ||
"Cache-Control": "no-cache" | ||
|
||
middleware: | ||
- static # serve files first | ||
- gzip # compress dynamic output | ||
|
||
static: | ||
dir: web | ||
forbid: | ||
- .php | ||
- .htaccess | ||
pool: | ||
num_workers: 1 | ||
supervisor: | ||
max_worker_memory: 100 | ||
jobs: | ||
pool: | ||
num_workers: 2 | ||
max_worker_memory: 100 | ||
consume: { } | ||
kv: | ||
local: | ||
driver: memory | ||
config: | ||
interval: 60 | ||
metrics: | ||
address: '127.0.0.1:2112' |
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Wait for RoadRunner to be ready to avoid flaky tests.
Add a simple readiness check after starting the server.
📝 Committable suggestion
🤖 Prompt for AI Agents