Robin Clowers

Results 36 issues of Robin Clowers

I'm getting a bunch of errors like `Callback info about the 'Elixir.Mix.Task' behaviour is not available`. Is there a flag to include my deps when building the ptl?

I seem to have hit a bug with hosts filtering. I have a pretty simple setup with 2 servers, and when I try to deploy to only one (either with...

need more info

I have something like this: ```elixir defmodule MyApp.Order do schema "orders" do belongs_to :user end end defmodule MyApp.User do schema "users" do has_many :orders end end ``` When I load...

I don't have much need for a dashboard page, but I can't see how to remove it without breaking `/admin`. I would like it to redirect to one of my...

What's the best way to override form rendering? I have a timestamp stored in the database, but I want the form to show it as a data. I thought I...

The docs say calling `member_action` will add a controller action, route and a link on the show page, but it doesn't seem to add anything to my show page. Is...

Following the instructions in the [generated readme](https://github.com/tiangolo/full-stack/blob/master/%7B%7Bcookiecutter.project_slug%7D%7D/README.md), when I `docker-compose up -d`, the backend fails to start with this error: ``` backend_1 | Traceback (most recent call last): backend_1 |...

Looks like there is an extra / in the tempfile path. ``` $ asdf install elixir 1.3 /var/folders/hn/2gyswljs27179p4ddtdvrqkc0000gn/T//elixir-precompiled-1.3.zip ** Resuming transfer from byte position 21 % Total % Received %...

enhancement
help wanted

Hey there, I really appreciate your tutorial, great stuff. That said, the way you handle reconciliation leads to bugs if things are conditionally rendered. I've forked your codesandbox to show...

I'm working on a project where we talk to many different instances of the same API that live on different hosts. Currently, it seems like I have to create separate...