Skip to content

Instantly share code, notes, and snippets.

@AStupidBear
Created May 10, 2020 01:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AStupidBear/b9ee8b8627eb7a4083e3e553e50f05df to your computer and use it in GitHub Desktop.
Save AStupidBear/b9ee8b8627eb7a4083e3e553e50f05df to your computer and use it in GitHub Desktop.
#!/usr/bin/env julia
using Pkg
if !haskey(Pkg.installed(), "PkgTemplates")
pkg"add https://github.com/invenia/PkgTemplates.jl#master"
end
using PkgTemplates
t = Template(
ssh = true,
dir = "/tmp",
plugins=[
Git(ssh = true),
License(name = "MIT"),
TravisCI(),
AppVeyor(),
Codecov(),
],
)
generate(ARGS[1], t)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment