diff --git a/.gitignore b/.gitignore index ed368cb..76ac7de 100644 --- a/.gitignore +++ b/.gitignore @@ -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 - diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..74138a1 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +.PHONY: build run + +build: + go build -o ./out/main cmd/main.go + +run: + @chmod +x ./out/main + ./out/main diff --git a/README.md b/README.md index a490e86..88174e3 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ -# public-template +# go template application +documentation [docs](./docs) diff --git a/cmd/.gitkeep b/cmd/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/cmd/main.go b/cmd/main.go new file mode 100644 index 0000000..1924992 --- /dev/null +++ b/cmd/main.go @@ -0,0 +1,9 @@ +package main + +import "fmt" + +func main() { + + fmt.Println("Hello world !") + +} diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 0000000..2508403 --- /dev/null +++ b/docs/README.md @@ -0,0 +1 @@ +# documentations diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..b0480a1 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module antoine-roux.tk/projects/go/go-template + +go 1.21.5 diff --git a/internal/.gitkeep b/internal/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/out/.gitkeep b/out/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/pkg/.gitkeep b/pkg/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..02ae055 --- /dev/null +++ b/renovate.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "dependencyDashboard": true +}