bring back yahoo pipes!
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: use air

+47
+45
.air.toml
··· 1 + # Config file for github.com/cosmtrek/air 2 + 3 + root = "." 4 + tmp_dir = "build" 5 + 6 + [build] 7 + args_bin = ["serve", "-c", "config.yaml"] 8 + entrypoint = "./build/main" 9 + cmd = "go build -o ./build/main ." 10 + delay = 1000 11 + exclude_dir = ["assets", "build", "vendor", "testdata", "public", ".git", ".idea"] 12 + exclude_file = [] 13 + exclude_regex = ["_test.go"] 14 + exclude_unchanged = false 15 + follow_symlink = false 16 + full_bin = "" 17 + include_dir = [] 18 + include_ext = ["go", "tpl", "tmpl", "html", "yaml", "yml"] 19 + include_file = [] 20 + kill_delay = "0s" 21 + log = "build-errors.log" 22 + poll = false 23 + poll_interval = 0 24 + rerun = false 25 + rerun_delay = 500 26 + send_interrupt = false 27 + stop_on_error = false 28 + 29 + [color] 30 + app = "" 31 + build = "yellow" 32 + main = "magenta" 33 + runner = "green" 34 + watcher = "cyan" 35 + 36 + [log] 37 + main_only = false 38 + time = false 39 + 40 + [misc] 41 + clean_on_exit = false 42 + 43 + [screen] 44 + clear_on_rebuild = false 45 + keep_scroll = true
+2
.gitignore
··· 21 21 # IDE 22 22 .idea/ 23 23 .vscode/ 24 + 25 + build/