Skip to content

Commit

Permalink
dockerignore and gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
hacdias committed Feb 26, 2021
1 parent 07914ce commit 69e3634
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
**/.dockerignore
**/.DS_Store
**/.git/
**/.gitattributes
**/.gitignore
**/.gitkeep
**/.gitmodules
**/Dockerfile
.circleci
**/*.md
Makefile
LICENSE-*
.env.*
**/*.toml
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
testground
node_modules

.env.toml

# Created by https://www.gitignore.io/api/go,visualstudiocode
# Edit at https://www.gitignore.io/?templates=go,visualstudiocode

### Go ###
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Dependency directories (remove the comment below to include it)
# vendor/

### Go Patch ###
/vendor/
/Godeps/

### VisualStudioCode ###
.vscode/*

### VisualStudioCode Patch ###
# Ignore all local history of files
.history

# End of https://www.gitignore.io/api/go,visualstudiocode

0 comments on commit 69e3634

Please sign in to comment.