vuego-cli
Command-line interface for the vuego template engine. Vuego is a lightweight, expression-based templating system for generating content from templates and data files.
Installation
go install github.com/titpetric/vuego-cli@latest
Usage
Usage: vuego-cli (command) [--flags]
Available commands:
fmt: Format vuego template files
render: Render templates with data
diff: Compare two HTML/vuego files using DOM comparison
serve: Start development server for templates and assets
tour: Start the vuego tour server
version: Show version/build information
Docker
You can also use the titpetric/vuego-cli docker image.
docker run --rm -p 8080:8080 titpetric/vuego-cli
By default it starts the tour server on http://localhost:8080.
Testing
Tests are implemented using titpetric/atkins.