feature: create stater template for golang program

This commit is contained in:
RouxAntoine 2023-12-30 00:15:03 +01:00
parent b5b5a965ba
commit a8f1953ef2
Signed by: antoine
GPG Key ID: 098FB66FC0475E70
11 changed files with 29 additions and 3 deletions

4
.gitignore vendored
View File

@ -12,7 +12,8 @@ cmake-build-*/
*.iws
# IntelliJ
out/
out/*
!**/.gitkeep
# mpeltonen/sbt-idea plugin
.idea_modules/
@ -25,4 +26,3 @@ com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

8
Makefile Normal file
View File

@ -0,0 +1,8 @@
.PHONY: build run
build:
go build -o ./out/main cmd/main.go
run:
@chmod +x ./out/main
./out/main

View File

@ -1,2 +1,3 @@
# public-template
# go template application
documentation [docs](./docs)

0
cmd/.gitkeep Normal file
View File

9
cmd/main.go Normal file
View File

@ -0,0 +1,9 @@
package main
import "fmt"
func main() {
fmt.Println("Hello world !")
}

1
docs/README.md Normal file
View File

@ -0,0 +1 @@
# documentations

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module antoine-roux.tk/projects/go/go-template
go 1.21.5

0
internal/.gitkeep Normal file
View File

0
out/.gitkeep Normal file
View File

0
pkg/.gitkeep Normal file
View File

4
renovate.json Normal file
View File

@ -0,0 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"dependencyDashboard": true
}