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

I enabled `follow_symlink` in `.air.toml` but it doesn't work. `./vendor/github.com/xxxxx/api-common` is a symlink point to `/Users/ocavue/go/src/github.com/xxxxx/api-common` but `air` doesn't watch it. My shell output: ``` $ air ... [18:31:33] watching...

Run this program by air: ``` package main import ( "time" ) func main() { time.Sleep(10 * time.Second) } ``` air execute the `sh` as a sub process wrapping the...

Would it be possible to add include_dir which would be used instead of exclude_dir. We have a monolithic repository and it would be easiest to have it watch the root...

Also added warning log with red default color

Hello! I was wondering if it's possible to execute the binary command before executing the build, this is specially helpful when running a service inside a container where you want...

First off: thanks for this! It's immensely useful to have a fast and full-featured Go reloader like this. I came here from Fresh and I appreciate the extra functionality this...

Hi, [someone recommended air to me](https://stackoverflow.com/questions/65213817/live-reloading-a-relative-package), but I can figure out how to use it. https://s.natalian.org/2020-12-10/air.mp4 ``` local-go-serverless-api]$ cat .air.toml root = ".." ``` https://github.com/kaihendry/aws-sam-gateway-example/tree/master/local-go-serverless-api Could you please advise?

```bash # Config file for [Air](https://github.com/cosmtrek/air) in TOML format # Working directory # . or absolute path, please note that the directories following must be under root. root = "."...

I am running air on Linux with 'go run'. Everything is working fine. Thanks for that first of all. It was impressive. I didn't even create a config, just typed...

I am using emacs, which will create temporary file as .#xxxx.go, so I need air to support shell pattern, like ".#*", "#*", etc in exclude file. I use filepath.Match to...