turash/.gitignore
Damir Mukimov f434b26dd4
Some checks failed
CI/CD Pipeline / frontend-lint (push) Successful in 1m38s
CI/CD Pipeline / backend-lint (push) Failing after 1m41s
CI/CD Pipeline / backend-build (push) Has been skipped
CI/CD Pipeline / frontend-build (push) Failing after 26s
CI/CD Pipeline / e2e-test (push) Has been skipped
Enhance configuration management and testing for backend
- Update .gitignore to selectively ignore pkg/ directories at the root level
- Modify CI workflow to verify all Go packages can be listed
- Introduce configuration management with a new config package, including loading environment variables
- Add comprehensive tests for configuration loading and environment variable handling
- Implement Neo4j database interaction functions with corresponding tests for data extraction
2025-12-26 13:18:00 +01:00

57 lines
687 B
Plaintext

# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool
*.out
*.html
# Go workspace file
go.work
# Build output
bin/
dist/
# Note: pkg/ is used for source code in bugulma/backend, so we only ignore build artifact pkg/ directories
# Ignore pkg/ only at root level or in specific build contexts, not in source code directories
/pkg/
*.a
# Vendor directory
vendor/
# IDE files
.vscode/
.idea/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# Logs
*.log
# Environment files
.env
.env.local
.env.*.local
# Coverage reports
coverage*.html
coverage*.out
# Temporary files
*.tmp
*.bak
*.cache