Willem Meints

Results 33 comments of Willem Meints

Tried to merge this pull request into my own repository. It contains a number of problems, that I was unable to solve. I'm thinking about fixing these issues and creating...

I ran into this exact problem. Because it's language specific now, I can't use the lexer without modifying it, so it matches the generated C# code. I've worked around it,...

+1 for me. Encountering the same problem. It makes my Atom editor instance unusable as it keeps throwing the same error over and over again. It does so every few...

Time to show off. Structured logging works. It also correctly detects errors. ![image](https://github.com/EdwinVW/pitstop/assets/1550763/fec57279-4a5a-43be-835c-7a6adf3c51b7)

The dashboard itself looks cool too. All endpoints show up. And I can see when a service fails. ![image](https://github.com/EdwinVW/pitstop/assets/1550763/3461e2e7-4d11-4ea9-932f-9433b28a3528)

Tracing also works really well. It links to logs and provides a nice overview of where the data is going. I'm missing the link to RabbitMQ here. Maybe we need...

My conclusions: - It is possible to integrate Aspire in an existing code base. But it's neater to start from scratch. - I don't get why they inject `SqlConnection` for...

I think adding a little background from my perspective to this discussion is helpful. I'm creating the PR for Python support. I designed the code in my PR with Django/Flask/FastAPI...

For the specific of the python frameworks I don't foresee any issues soon. What's the impact of deprecating an extension?

Fun fact: When I add the HTTP port like this: ```csharp builder .AddExecutable( "flask-service", ".venv/scripts/flask.exe", "../../apps/flask-service", args: ["--app","main","run"] ) .WithHttpEndpoint(targetPort: 5000, env: "HTTP_PORT"); ``` It works flawlessly.