Skip to content

Commit

Permalink
add git ignore and remove .artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
HoangNguyen689 committed May 19, 2023
1 parent 40cf057 commit 7cbc7cd
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
go-version-file: go.mod
cache: true
cache-dependency-path: go.sum
- run: go build -o ../.artifacts ./hello_world.go
- run: go build -o ./.artifacts ./hello_world.go
30 changes: 30 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# 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/

.artifacts
**/.DS_Store

node_modules
frontend/dist

.dev
**/.terraform

# IntelliJ idea
.idea

# ENV
.env

0 comments on commit 7cbc7cd

Please sign in to comment.