-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
Pass through settings to the realtime compiler #1450
Merged
caendesilva
merged 54 commits into
master
from
pass-through-settings-to-realtime-compiler
Nov 12, 2023
Merged
Pass through settings to the realtime compiler #1450
caendesilva
merged 54 commits into
master
from
pass-through-settings-to-realtime-compiler
Nov 12, 2023
Conversation
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
Codecov Report
@@ Coverage Diff @@
## master #1450 +/- ##
=============================================
Coverage 100.00% 100.00%
- Complexity 1719 3456 +1737
=============================================
Files 180 360 +180
Lines 4662 9386 +4724
=============================================
+ Hits 4662 9386 +4724
|
caendesilva
force-pushed
the
pass-through-settings-to-realtime-compiler
branch
from
November 11, 2023 12:58
e0b3b8d
to
e65d191
Compare
caendesilva
force-pushed
the
pass-through-settings-to-realtime-compiler
branch
from
November 11, 2023 14:42
a94786a
to
3fe6ad8
Compare
caendesilva
force-pushed
the
pass-through-settings-to-realtime-compiler
branch
from
November 11, 2023 14:51
586c159
to
52571f6
Compare
caendesilva
force-pushed
the
pass-through-settings-to-realtime-compiler
branch
from
November 12, 2023 08:59
249cc2f
to
03ef853
Compare
caendesilva
force-pushed
the
pass-through-settings-to-realtime-compiler
branch
from
November 12, 2023 09:42
4b0cf09
to
586cf18
Compare
Does not change rendered output
caendesilva
force-pushed
the
pass-through-settings-to-realtime-compiler
branch
from
November 12, 2023 11:22
47b57e1
to
401c78b
Compare
Just saves on testing logic as we can fix the version
caendesilva
force-pushed
the
pass-through-settings-to-realtime-compiler
branch
from
November 12, 2023 11:42
8435e1e
to
e666159
Compare
This reverts commit b1b155e.
This just feels bloaty at the moment, plus the user should be able to assume that the flag they provided is applied.
caendesilva
changed the title
Pass through settings to realtime compiler
Pass through settings to the realtime compiler
Nov 12, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Adds a few new options to the
php hyde serve
command to allow some settings to be specified with command-line options. This is done by creating environment variables passed through to the Symfony process, and which are then injected into the configuration repository by our custom runtime configuration loader originally used for Yaml configuration. This makes so that the options are fully integrated into the request lifecycle. Also cleans up some adjacent code.