Skip to content

Commit

Permalink
Setup gitignore and git attibute. Also setup base got github folder (…
Browse files Browse the repository at this point in the history
…will add workflow when setting up sampleapps)
  • Loading branch information
anthonycorbacho committed Mar 20, 2023
1 parent ec8147f commit 6076901
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -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
3 changes: 3 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence.
* @anthonycorbacho
4 changes: 4 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## Description


## Other Information
28 changes: 28 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 6076901

Please sign in to comment.