README.md396 B · markdown
# just-go
Stop over-engineering your Go projects.
`just-go` initializes a new Go project with the essentials:
1. `go.mod`
2. `main.go`
3. `README.md`
4. `Makefile`
5. `.gitignore`
It refuses to create `pkg/`, `cmd/`, `internal/`, or any other directory.
## Usage
```bash
just-go my-project
```
## Philosophy
If your project needs subdirectories, you are probably solving the wrong problem.