49 lines
506 B
Plaintext
49 lines
506 B
Plaintext
# Environment and secrets
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*.pem
|
|
|
|
# Go
|
|
/bin/
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
vendor/
|
|
|
|
# Build and test
|
|
*.test
|
|
*.out
|
|
coverage.html
|
|
coverage.out
|
|
*.prof
|
|
|
|
# IDE and editors
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs and temp
|
|
*.log
|
|
tmp/
|
|
temp/
|
|
.cache/
|
|
|
|
# sqlc generated (optional: uncomment if you regenerate and don't want to track)
|
|
# internal/repository/*.sql.go
|
|
|
|
# Local dev (binaries in project root only)
|
|
/server
|
|
/calendarapi
|