diff options
| author | 2025-07-13 16:19:57 +0700 | |
|---|---|---|
| committer | 2025-07-13 16:19:57 +0700 | |
| commit | 68d671127bd03c019081599d069810a81f871095 (patch) | |
| tree | ad19bf33ca6efed1677f0344545f75e4f154f055 /.gitignore | |
| download | articlator-68d671127bd03c019081599d069810a81f871095.tar.gz articlator-68d671127bd03c019081599d069810a81f871095.zip | |
Initial commit
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aaadf73 --- /dev/null +++ b/.gitignore @@ -0,0 +1,32 @@ +# If you prefer the allow list template instead of the deny list, see community template: +# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore +# +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Code coverage profiles and other test artifacts +*.out +coverage.* +*.coverprofile +profile.cov + +# Dependency directories (remove the comment below to include it) +# vendor/ + +# Go workspace file +go.work +go.work.sum + +# env file +.env + +# Editor/IDE +# .idea/ +# .vscode/ |