Initial upload: Project Scaffold CLI with multi-language templates and CI/CD
This commit is contained in:
27
project_scaffold_cli/templates/go/README.md.j2
Normal file
27
project_scaffold_cli/templates/go/README.md.j2
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
# {{ project_name }}
|
||||||
|
|
||||||
|
{{ description }}
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
```bash
|
||||||
|
go get github.com/{{ author|replace(' ', '-') }}/{{ project_slug }}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
```go
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"{{ author|replace(' ', '-') }}/{{ project_slug }}"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
{{ project_slug }}.Run()
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
{{ license }}
|
||||||
Reference in New Issue
Block a user