puma-dev
puma-dev copied to clipboard
A tool to manage rack apps in development with puma
When running without a preexisting CA, page loads fail with `http: panic serving 172.17.0.1:42896: runtime error: invalid memory address or nil pointer dereference`. Running with the `.puma-dev-ssl` folder mapped into...
On Mac OS puma-dev loads interactive zsh init files. Which it should not do. According to https://zsh.sourceforge.io/Intro/intro_3.html: > \`.zshenv' is sourced on all invocations of the shell, unless the -f...
Opening this for discussion. Related to https://github.com/puma/puma-dev/issues/44. Pow allows you to serve a completely static website as long as it has a `public` directory. No `Gemfile` (with puma) nor a...
I'm trying to use puma-dev with the proxy support. If I specify `local` as the domain when starting puma-dev, the proxy feature doesn't work. It looks like the requests are...
I was having a look at the proxy feature of puma-dev and I thought that it would be very useful to have the possibility to write a generic command to...
Currently when using the following puma config file, the `threads` and `workers` options are ignored because the `-w` and `-t` flags appear after the `-C` flag and will override the...
I’m fine if you decide this is WONTFIX, but I think it’s worth the trouble. This is specific to the launchd.plist created on macOS. I believe that, security-wise, it’s better...
I am trying to let puma-dev to use `/bin/sh` instead of `/bin/zsh` , I tried to set the content of `.pumaenv` as: ``` export SHELL=/bin/sh ``` but when I look...
Puma-dev will try to run Puma through bundle exec to get the correct version: https://github.com/puma/puma-dev/blob/8907643a169565e11951e8ed0e425453108dcf56/dev/app.go#L254-L258 However, the if-statement fails if you have relative paths in your Gemfile. Let's say I...
Since a few days all my applications that use `puma-dev` don't work any more because of this error: ``` http: proxy error: dial tcp 127.0.0.1:3035: connect: connection refused ``` I'm...