diff options
| author | 2025-07-22 01:09:02 +0700 | |
|---|---|---|
| committer | 2025-07-22 01:09:02 +0700 | |
| commit | fb75c82a3007d48bc53ff4612eb883781f037b4c (patch) | |
| tree | 4d125f620983275f5fd604442df72a9d02333521 /.gitignore | |
| download | web-fb75c82a3007d48bc53ff4612eb883781f037b4c.tar.gz web-fb75c82a3007d48bc53ff4612eb883781f037b4c.zip | |
feat: first demo version
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d1cb3a6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,37 @@ +# 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/ + +config*.json +!config*.sample.json + +/main |