Files
go-service/.gitignore
2026-06-23 11:26:23 +03:00

120 lines
2.1 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ===========================================
# GO
# ===========================================
# Бинарные файлы (скомпилированные программы)
gpio-monitor-server
progress-server
*.exe
*.exe~
*.dll
*.so
*.dylib
# Тестовые бинарники
*.test
# Результаты тестов с покрытием
*.out
*.cov
*.html
# Зависимости
vendor/
# ===========================================
# NODE.JS / NPM / TYPESCRIPT
# ===========================================
# Зависимости node_modules
node_modules/
dist/
package-lock.json
yarn.lock
pnpm-lock.yaml
# Скомпилированные JS файлы (если не хотите хранить их в репозитории)
# Раскомментируйте если не храните dist в Git
# dist/
# build/
# Логи npm
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Кэш npm
.npm/
.eslintcache
# ===========================================
# ОБЩИЕ ДЛЯ ПРОЕКТА
# ===========================================
# Временные файлы и сборки
tmp/
temp/
build/
# Файлы IDE
.idea/
.vscode/
*.swp
*.swo
*~
*.suo
*.user
*.sln
*.csproj
# Системные файлы
.DS_Store
Thumbs.db
desktop.ini
# Файлы окружения
.env
.env.local
.env.*.local
# ===========================================
# СПЕЦИФИЧНЫЕ ДЛЯ ВАШЕГО ПРОЕКТА
# ===========================================
# Старые JS файлы (если перешли на TypeScript)
# Раскомментируйте когда удалите старые .js файлы из js/
# cmd/server/web/js/*.js
# !cmd/server/web/js/*.ts
# Тестовые изображения
test.jpg
*.jpg
*.png
*.jpeg
*.gif
*.bmp
# Логи приложения
*.log
logs/
# PID файлы
*.pid
*.pid.lock
# Файлы дампа памяти
*.dump
*.core
# Debian packaging
*.deb
*.dsc
*.changes
debian/*.log
debian/*.debhelper
debian/*.substvars
debian/files
debian/gpio-monitor-server/
debian/debhelper-build-stamp
debian/.debhelper/