Daniel Ribeiro

Results 41 comments of Daniel Ribeiro

Good idea @krzysztof-gzocha. We could have something like: ``` go type Configuration struct { Definitions []definition.Definition; } ``` And the adapters would simply return an instance of `Configuration`. Is that...

@krzysztof-gzocha you're right. The `Configuration` should be unaware of how it gets created.

Some of the naming decisions come from the conventions of the Go language itself. But we can work something in that sense. Want to jump in?

@caioketo what exactly do you mean by handling input?

@caioketo the library currently only supports rendering, but the idea is to eventually have a game engine on top that will be able to handle input and do all sorts...

@jpalawaga @AydinHassan I've just submitted #308, which allows for us to treat specific error situations like this on the adapter level and pass an exception above the execution.

Try this in the `config_test.yml`: ``` doctrine: dbal: default_connection: default connections: default: driver: pdo_sqlite path: %kernel.cache_dir%/test.db ```

I believe a good way to solve this issue is to make all API management through Cloud Endpoints. Find more info on how to do a basic setup here: https://cloud.google.com/endpoints/docs/openapi/get-started-cloud-functions...