Andrey Novikov

Results 182 comments of Andrey Novikov

Thank you and sorry for the wait. Released in [0.10.0](https://github.com/yabeda-rb/yabeda-rails/releases/tag/v0.10.0)

Hey, thanks for reporting. Unfortunately, I can't reproduce this behaviour. Can your local tmux has some custom configuration? I wonder what may be different for the first and other processes...

But why `set-environment PATH` doesn't break the things for the first command? :thinking:

At the time being I would recommend to craft separate config for Overmind and use it instead (you can declare path to it in `OVERMIND_TMUX_CONFIG` env variable). See https://github.com/DarthSim/overmind?tab=readme-ov-file#specifying-tmux-config for...

Thank you for your reply! Unfortunately, even in that case `client.auth.get_session()` and `client.auth.get_user()` are both still returning `None`. For my purposes I can use `client.auth.get_user(token)` to retrieve info about signed...

You can skip reading local `.env` files by setting `OVERMIND_SKIP_ENV` env variable to non-empty value: ``` process1: cd /path/to/repo1 && OVERMIND_SKIP_ENV=1 overmind run repo1_command process2: cd /path/to/repo2 && OVERMIND_SKIP_ENV= 1overmind...

Thanks for such a detailed issue! As for me, I would also expect shell environment to take precedence over env files, so please make a pull request! --- `Overload` usage...

Lefthook maintainer is also here. Yep, there is a problem with `$PATH` population for hooks when commit is being made from within GitHub Desktop and other GUI tools on various...

Generally speaking, I'm not sure why you would need Overmind when using Docker. There are Docker Compose and [dip](https://github.com/bibendi/dip) that makes development in Docker pretty close to Overmind experience.

Yabeda [exporter](https://github.com/yabeda-rb/yabeda-prometheus/blob/7a866f30a83f15a75d28f08ee2aedc40d5736f08/lib/yabeda/prometheus/exporter.rb#L35-L41) extends [exporter](https://github.com/prometheus/client_ruby/blob/main/lib/prometheus/middleware/exporter.rb) from Prometheus Ruby client which is a Rack middleware. Probably, easiest way is to just place bearer checking middleware (like this one: https://github.com/yujideveloper/rack-bearer_auth) before exporter with...