├── .devcontainer ├── devcontainer.json └── postCreate.sh ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── cmd ├── configure.go ├── root.go ├── utils.go └── version.go ├── docs ├── configuration.md ├── development.md ├── examples.md └── self-hosting.md ├── go.mod ├── go.sum ├── main.go └── samples ├── alice_in_wonderland.txt └── pride_and_prejudice.txt /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/postCreate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/.devcontainer/postCreate.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/README.md -------------------------------------------------------------------------------- /cmd/configure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/cmd/configure.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/cmd/utils.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/cmd/version.go -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/self-hosting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/docs/self-hosting.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/main.go -------------------------------------------------------------------------------- /samples/alice_in_wonderland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/samples/alice_in_wonderland.txt -------------------------------------------------------------------------------- /samples/pride_and_prejudice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbekoe/convey/HEAD/samples/pride_and_prejudice.txt --------------------------------------------------------------------------------