air icon indicating copy to clipboard operation
air copied to clipboard

☁️ Live reload for Go apps

Results 201 air issues
Sort by recently updated
recently updated
newest added

Fixes https://github.com/cosmtrek/air/issues/320. This PR fixes an issue where runtime args were being ignored when specifying `full_bin` as opposed to `bin` properties in the config.

VSCode, Ubuntu 20.04.4. Running `air` in a director runs in about 0.5s, but when it's watching and running based on changes it takes maybe 2-3s. Looked into it and the...

The current implementation will convert the whole config.bin to the abs path. This introduces errors when the parameter contains "//", like "--url http://example.com". This PR changes to only convert the...

add support for pre build commands with extension restriction [[build.pre_builder]] cmd = "gqlgen generate" only_ext = "graphql" [[build.pre_builder]] cmd = "go generate" only_ext = "graphql"

The ability to provide runtime args was implemented in https://github.com/cosmtrek/air/pull/166. It's pretty handy and works really well when using `bin` but it gets completely ignored if using `full_bin`. The issue...

Have recently integrated Air into a repo at work, everything has been running fine until today on a fresh pull from the repository, everything in the same state as has...

I am using Air to run a api server from the source code (kinda how i have the program designed to run to a certain degree) and I have noticed...