├── .gitignore ├── .goreleaser.yaml ├── LICENSE.md ├── README.md ├── assets ├── banner.png └── campfire_flaticon_256.png ├── cmd └── root.go ├── demo ├── Taskfile.yml ├── demo.go ├── filtering.gif ├── filtering.tape ├── monitoring.gif ├── monitoring.tape ├── realtime.gif ├── realtime.tape └── shared.tape ├── go.mod ├── go.sum ├── internal └── models │ ├── campfire.go │ ├── footer.go │ ├── header.go │ ├── keys.go │ ├── message.go │ ├── styles.go │ └── utils.go └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | dist/ 3 | -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/assets/banner.png -------------------------------------------------------------------------------- /assets/campfire_flaticon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/assets/campfire_flaticon_256.png -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/cmd/root.go -------------------------------------------------------------------------------- /demo/Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/demo/Taskfile.yml -------------------------------------------------------------------------------- /demo/demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/demo/demo.go -------------------------------------------------------------------------------- /demo/filtering.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/demo/filtering.gif -------------------------------------------------------------------------------- /demo/filtering.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/demo/filtering.tape -------------------------------------------------------------------------------- /demo/monitoring.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/demo/monitoring.gif -------------------------------------------------------------------------------- /demo/monitoring.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/demo/monitoring.tape -------------------------------------------------------------------------------- /demo/realtime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/demo/realtime.gif -------------------------------------------------------------------------------- /demo/realtime.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/demo/realtime.tape -------------------------------------------------------------------------------- /demo/shared.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/demo/shared.tape -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/go.sum -------------------------------------------------------------------------------- /internal/models/campfire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/internal/models/campfire.go -------------------------------------------------------------------------------- /internal/models/footer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/internal/models/footer.go -------------------------------------------------------------------------------- /internal/models/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/internal/models/header.go -------------------------------------------------------------------------------- /internal/models/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/internal/models/keys.go -------------------------------------------------------------------------------- /internal/models/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/internal/models/message.go -------------------------------------------------------------------------------- /internal/models/styles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/internal/models/styles.go -------------------------------------------------------------------------------- /internal/models/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/internal/models/utils.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaltonSW/campfire/HEAD/main.go --------------------------------------------------------------------------------