diff options
| author | plutorocks <> | 2026-02-26 21:30:32 +0000 |
|---|---|---|
| committer | plutorocks <> | 2026-02-26 21:30:32 +0000 |
| commit | 3db298ec3eca0ed94cb7912f660df7dd1f4582e0 (patch) | |
| tree | d406e1d64aa10c8027bf4bf4a5914f1378fb495e /.gitignore | |
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b1aba02 --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +# ===== Go build artifacts ===== +bridge-server +*.exe +*.exe~ +*.dll +*.so +*.dylib +*.test +*.out + +# Go workspace file (optional; commit only if you intentionally use it) +go.work + +# ===== Dependency / module cache (never commit) ===== +vendor/ + +# ===== Environment / secrets ===== +.env +.env.* +tokens.json +tokens.local.json + +# ===== Logs ===== +*.log +logs/ + +# ===== OS junk ===== +.DS_Store +Thumbs.db + +# ===== IDEs ===== +.idea/ +.vscode/ +*.swp +*.swo + +# ===== Coverage ===== +coverage.out +coverage.html
\ No newline at end of file |
