fix: correct pyproject.toml for project-scaffold-cli
- Fixed package name from auto-readme-cli to project-scaffold-cli - Fixed dependencies to match project-scaffold-cli requirements - Fixed linting import sorting issues in test files
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