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