David Crouch

Results 5 comments of David Crouch

Appending `->where()->end();` works for me: ``` $query = $builder->select() ->setTable('user') ->setColumns(['user_id','name','email']) ->where()->end(); ``` This will convert a `ColumnQuery` back to a `QueryInterface` without side effects.

After looking through the tests, all of which pass, there is a key difference in how the queries are built up in the tutorials. Rather than calling `builder->select()` to initialise...

Not sure what your view-scale is set to but I just fixed a similar problem by changing the view-scale from `days` to `weeks`. Less columns to render. The project was...

In case it isn't clear (it wasn't to me) the api key fix suggested by @michidk needs to be added to the mounts section of the devcontainer.json: ```json "mounts": [...

Same problem here, temp fix is to reset the ownership **inside** the container: ``` sudo chown root:docker /var/run/docker.sock ``` (This assumes the container has the docker group definition as the...