Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 906 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 906 Bytes

vagrant-guest-plugin-skeleton

Ever wished you could spin up a Vagrant guest plugin right quick? Now, with vagrant-guest-plugin-skeleton you can! Follow these steps:

  1. Copy this repo. Its a template so follow the Github instructions to create a repo from a template using the UI, or use the github cli.
$ gh repo create vagrant-guest-myspecialguest --template soapy1/vagrant-guest-plugin-skeleton --public
  1. Setup your go project
$ go mod init github.com/USERNAME/vagrant-guest-MYSPECIALGUEST
  1. Update some bits
  • update the name of your guest in the internal/guest package and main.go
  • update the import statements in main.go
  1. Tidy everything up
$ go mod tidy
$ go build .
  1. Fill in the implementation!