From 607690171413971eadd1dc55106fd4672e72bb1a Mon Sep 17 00:00:00 2001 From: Anthony Corbacho Date: Mon, 20 Mar 2023 09:06:31 +0900 Subject: [PATCH] Setup gitignore and git attibute. Also setup base got github folder (will add workflow when setting up sampleapps) --- .gitattributes | 32 ++++++++++++++++++++++++++++++++ .github/CODEOWNERS | 3 +++ .github/pull_request_template.md | 4 ++++ .gitignore | 28 ++++++++++++++++++++++++++++ 4 files changed, 67 insertions(+) create mode 100644 .gitattributes create mode 100644 .github/CODEOWNERS create mode 100644 .github/pull_request_template.md create mode 100644 .gitignore diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..487d6bb --- /dev/null +++ b/.gitattributes @@ -0,0 +1,32 @@ +* text=auto + +# Language +*.go -text diff=golang + +# Document +*.md text diff=markdown +*.tex text diff=tex +*.sql linguist-detectable=true +*.sql linguist-language=sql + +# Scripts +*.bash text eol=lf +*.fish text eol=lf +*.sh text eol=lf +*.zsh text eol=lf + +# Serialisation +*.json text +*.yaml text +*.yml text + +# +# Exclude files from exporting +# + +go.sum linguist-generated=true +vendor/modules.txt linguist-generated=true + +.gitattributes export-ignore +.gitignore export-ignore +.gitkeep export-ignore diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..c6410a3 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,3 @@ +# These owners will be the default owners for everything in +# the repo. Unless a later match takes precedence. +* @anthonycorbacho diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..690fe69 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,4 @@ +## Description + + +## Other Information diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f9deb95 --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +## IDE folders +.idea/ +.vscode +*~ +\#*\# +.\#* + +### VS Code +__debug_bin + +## OSX file +.DS_Store +.AppleDouble +.LSOverride +._* + +## Folders +_obj +_test + + +### Other +*.exe +*.test +*.prof + +## Secrets +*secret.yaml