- Added .gitea/workflows/deploy.yml and .gitea/workflows/build.yml to .gitignore to prevent tracking of workflow configuration files.
54 lines
522 B
Plaintext
54 lines
522 B
Plaintext
# Binaries
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
jd-book-uploader
|
|
|
|
# Test binary
|
|
*.test
|
|
|
|
# Output of the go coverage tool
|
|
*.out
|
|
|
|
# Dependency directories
|
|
vendor/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# Environment variables
|
|
.env
|
|
|
|
# Firebase credentials
|
|
firebase-service-account.json
|
|
*.json
|
|
!go.mod
|
|
!go.sum
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
|
|
.env.example
|
|
.env.production
|
|
.env.local
|
|
.env.production.example
|
|
.gitea/workflows/deploy.yml
|
|
.gitea/workflows/build.yml
|