How to generate new Module template without Git/Github

When you want to generate new module the documentation points you to PkgTemplates however if for some reason you do not have a Git or Github account you will get an error:

Git hosting service username is required, set one with keyword `user="<username>"`

To solve it use the following script to create new module under the current directory:

using PkgTemplates

plugins =    [     CompatHelper(),
ProjectFile(),
SrcDir(),
!Git,
License(),
Readme(),
Tests(),
TagBot(),
!GitHubActions,
]

t = Template(;plugins=plugins, dir=".") # replace dir with the required directory

t("Demo") # the module name will be Demo