feature: create stater template for golang program
This commit is contained in:
parent
b5b5a965ba
commit
a8f1953ef2
4
.gitignore
vendored
4
.gitignore
vendored
@ -12,7 +12,8 @@ cmake-build-*/
|
|||||||
*.iws
|
*.iws
|
||||||
|
|
||||||
# IntelliJ
|
# IntelliJ
|
||||||
out/
|
out/*
|
||||||
|
!**/.gitkeep
|
||||||
|
|
||||||
# mpeltonen/sbt-idea plugin
|
# mpeltonen/sbt-idea plugin
|
||||||
.idea_modules/
|
.idea_modules/
|
||||||
@ -25,4 +26,3 @@ com_crashlytics_export_strings.xml
|
|||||||
crashlytics.properties
|
crashlytics.properties
|
||||||
crashlytics-build.properties
|
crashlytics-build.properties
|
||||||
fabric.properties
|
fabric.properties
|
||||||
|
|
||||||
|
8
Makefile
Normal file
8
Makefile
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
.PHONY: build run
|
||||||
|
|
||||||
|
build:
|
||||||
|
go build -o ./out/main cmd/main.go
|
||||||
|
|
||||||
|
run:
|
||||||
|
@chmod +x ./out/main
|
||||||
|
./out/main
|
@ -1,2 +1,3 @@
|
|||||||
# public-template
|
# go template application
|
||||||
|
|
||||||
|
documentation [docs](./docs)
|
||||||
|
0
cmd/.gitkeep
Normal file
0
cmd/.gitkeep
Normal file
9
cmd/main.go
Normal file
9
cmd/main.go
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
|
||||||
|
fmt.Println("Hello world !")
|
||||||
|
|
||||||
|
}
|
1
docs/README.md
Normal file
1
docs/README.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
# documentations
|
3
go.mod
Normal file
3
go.mod
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
module antoine-roux.tk/projects/go/go-template
|
||||||
|
|
||||||
|
go 1.21.5
|
0
internal/.gitkeep
Normal file
0
internal/.gitkeep
Normal file
0
out/.gitkeep
Normal file
0
out/.gitkeep
Normal file
0
pkg/.gitkeep
Normal file
0
pkg/.gitkeep
Normal file
4
renovate.json
Normal file
4
renovate.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"dependencyDashboard": true
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user