Getting Started
Install
go install github.com/neural-chilli/qp/cmd/qp@latestCreate qp.yaml
qp initMinimal starter:
project: my-service
default: check
tasks:
lint:
desc: Lint code
cmd: golangci-lint run
test:
desc: Run tests
cmd: go test ./...
check:
desc: Local verification
run: par(lint, test)Core Commands
qp list
qp help check
qp check
qp guardSafety Defaults
Use safety on tasks and run unsafe tasks only with explicit opt-in:
qp deploy --allow-unsafe