Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maxguuse/bruh
A CLI utility to easily use the Golang project structure that I prefer.
https://github.com/maxguuse/bruh
cli cli-app go golang
Last synced: 28 days ago
JSON representation
A CLI utility to easily use the Golang project structure that I prefer.
- Host: GitHub
- URL: https://github.com/maxguuse/bruh
- Owner: maxguuse
- Created: 2024-01-27T12:58:16.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-01-28T14:57:33.000Z (11 months ago)
- Last Synced: 2024-06-21T17:03:59.533Z (7 months ago)
- Topics: cli, cli-app, go, golang
- Language: Go
- Homepage:
- Size: 46.9 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bruh
A CLI utility to easily use the Golang project structure that I prefer.## Installation
```
go install github.com/maxguuse/bruh/cmd/bruh@latest
```## Possible output project structure
```
.
├── apps
│ ├── api
│ │ ├── cmd
│ │ │ └── main.go
│ │ ├── go.mod
│ │ └── internal
│ └── user
│ ├── cmd
│ │ └── main.go
│ ├── go.mod
│ └── internal
├── bruh.yaml
├── go.work
└── libs
├── config
│ ├── go.mod
│ └── main.go
└── logger
├── go.mod
└── main.go
```