about

I love programming and most parts of it is trying to figure out how things can be used to make the life easier for everyone.

Symfony is making my life easier since 2012, and I’m now the organizer of the Symfony Usergroup Berlin.

I’m member of c-base the crashed space station in berlin and there I experiment with all the other carbon based beings how to interact in a future compatible style.

References


More posts like this

Dynamic Route loading in a non standard Symfony structure

2024-08-16 | #clean architecture #ddd #routing #symfony

When you divert from Symfony’s standard structure there are some things that do not work out of the box anymore. One of it is routing. Default Symfony If you start a fresh Symfony project you will be presented with the following stricture: app/src ├─ Controller ├─ Entity ├─ Repository └─ Kernel.php The routing config looks like this: # app/config/routes.yaml controllers: resource: path: ../src/Controller/ namespace: App\Controller type: attribute So the Controller directory is the place all controllers go you might think first.

Continue reading 


Environment variables in a dockerized Symfony

2023-01-02 | #cd #ci #docker #docker-compose #dotenv #env_file #symfony

I have developed a Symfony Web-Application, and it runs locally in a dockerized environment with docker-compose. This app is going to be deployed to production as a docker container. In production the handling of environment variables and how they are passed to the container during development is different. 12 Factor App A few points from the 12factor methodology: III. Config: Store config in the environment since env vars are easy to change between deploys without changing any code X.

Continue reading 