from go-template

This commit is contained in:
John Ritsema
2023-06-01 22:04:03 -04:00
commit 2811fdd9cf
9 changed files with 132 additions and 0 deletions

19
README.md Normal file
View File

@@ -0,0 +1,19 @@
# go-template
Quick starter template for new go projects
```sh
go mod init app
```
```
Choose a make command to run
vet vet code
test run unit tests
build build a binary
autobuild auto build when source files change
dockerbuild build project into a docker container image
start build and run local project
deploy build code into a container and deploy it to the cloud dev environment
```