https://github.com/yuribrunetto/create-go-app
Minor CLI tool to create a simple Go project folder structure
https://github.com/yuribrunetto/create-go-app
cli go golang tool
Last synced: about 1 year ago
JSON representation
Minor CLI tool to create a simple Go project folder structure
- Host: GitHub
- URL: https://github.com/yuribrunetto/create-go-app
- Owner: YuriBrunetto
- Created: 2024-04-02T11:30:11.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-05T12:06:06.000Z (about 2 years ago)
- Last Synced: 2025-02-09T12:43:51.744Z (over 1 year ago)
- Topics: cli, go, golang, tool
- Language: Go
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# create-go-app ðŠĪ
> Minor CLI tool to create a simple Go project folder structure with `Makefile`
## Why?
Simply because it got boring to always have to create by hand a new folder with the necessary files and commands inside `Makefile`. And of course, for study reasons ðĪ
# Usage
```bash
$ create-go-app your-app
```
## The structure
```
your-app
âââ Makefile
âââ main.go
```
And the `Makefile` will look with something like this:
```Makefile
build:
@go build -o bin/your-app
run: build
@./bin/your-app
```