-
-
Notifications
You must be signed in to change notification settings - Fork 36
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
Updating files to match Symfony updates #41
Conversation
Hi @JKetelaar ,
Mainly because Symfony 4 was the latest release when this project started, and we took it from there. In Did you remove Other than that, thanks for your contribution! 👍 |
Gotcha, makes sense. The declare strict types were removed in the latest Symfony version, thus also in this PR. Do you mind if I also rewrite the current .env logic and use the correct way of handling .env with environments & Git/VC? |
By all means, go ahead! :-) |
@JKetelaar Not intending to rush you, but i was curious: Do you plan on adding that to this PR, or to a followup one? |
Oh sorry, my bad, forgot to respond. I will be doing that in a next PR |
@bobdenotter I have already made this modification in my pull request #31. I just have a difference on a line so I don't have a problem with Docker in the Here we have this:
And I have this:
|
@bobdenotter this can be closed if #31 is going to be merged |
We've merged #31, so I'm going to close this one. 👍 |
Current setup doesn't allow to read .env files properly
Instructions to create the bug:
.env
from.gitignore
(because we have.env.local
for that).env.local
to override values from.env
.env
has:.env.local
has:Now either running bin/console or opening the website will say either '
Malformed parameter "url"
' (referring to doctrine.yaml) or something regards to not being able to find the parameter or SQL server.Or was there a reason to have these files specifically like they are?