8000 Releases · rjeczalik/buffalo · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Releases: rjeczalik/buffalo

v0.14-beta.1

09 Dec 20:06
Compare
Choose a tag to compare
buffalo/cmd/dev: forward flags to generated binary

This PR forwards flags passed to `buffalo dev` to the generated binary
upon execution. In particular the following:

    $ buffalo dev -- -h example.com -p 8080

Will pass the "-- -h example.com -p 8080" flags. This is the same
behaviour as executing the following commands:

    $ buffalo build
    $ ./bin/my-web-app -- -h example.com -p 8080
0