first commit
This commit is contained in:
commit
57bb8aafbe
27 changed files with 8538 additions and 0 deletions
147
.gitignore
vendored
Normal file
147
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,147 @@
|
|||
# Binaries and executables
|
||||
compose
|
||||
deb-bootc-compose
|
||||
*.exe
|
||||
*.exe~
|
||||
*.dll
|
||||
*.so
|
||||
*.dylib
|
||||
|
||||
# Test binary, built with `go test -c`
|
||||
*.test
|
||||
|
||||
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||
*.out
|
||||
|
||||
# Dependency directories (remove the comment below to include it)
|
||||
# vendor/
|
||||
|
||||
# Go workspace file
|
||||
go.work
|
||||
|
||||
# Build outputs and artifacts
|
||||
build/
|
||||
bin/
|
||||
dist/
|
||||
output/
|
||||
|
||||
# Project-specific build outputs and work directories
|
||||
test-output/
|
||||
test-output-enhanced/
|
||||
work/
|
||||
ostree-repo/
|
||||
repo/
|
||||
|
||||
# Cache and temporary directories
|
||||
cache/
|
||||
tmp/
|
||||
temp/
|
||||
*.tmp
|
||||
|
||||
# IDE and editor files
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS generated files
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
# Log files
|
||||
*.log
|
||||
logs/
|
||||
compose.log
|
||||
|
||||
# Configuration files with sensitive data
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
config.local.yaml
|
||||
config.local.yml
|
||||
|
||||
# Database files
|
||||
*.db
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
|
||||
# Container and VM files
|
||||
*.qcow2
|
||||
*.vmdk
|
||||
*.vdi
|
||||
*.img
|
||||
*.iso
|
||||
|
||||
# OSTree repository files
|
||||
ostree-repo/
|
||||
repo/
|
||||
|
||||
# Package manager files
|
||||
*.deb
|
||||
*.rpm
|
||||
*.tar.gz
|
||||
*.zip
|
||||
|
||||
# Test coverage
|
||||
coverage.out
|
||||
coverage.html
|
||||
|
||||
# Profiling data
|
||||
*.prof
|
||||
*.pprof
|
||||
|
||||
# Backup files
|
||||
*.bak
|
||||
*.backup
|
||||
*.old
|
||||
|
||||
# Local development files
|
||||
local/
|
||||
dev/
|
||||
development/
|
||||
|
||||
# Documentation build
|
||||
docs/_build/
|
||||
site/
|
||||
|
||||
# Node.js (if any frontend tools)
|
||||
node_modules/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Python (if any Python tools)
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
env/
|
||||
venv/
|
||||
ENV/
|
||||
env.bak/
|
||||
venv.bak/
|
||||
|
||||
# Rust (if any Rust components)
|
||||
target/
|
||||
Cargo.lock
|
||||
|
||||
# Temporary build artifacts
|
||||
*.o
|
||||
*.a
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
*.exe
|
||||
*.out
|
||||
*.app
|
||||
|
||||
# Specific project artifacts
|
||||
apt-ostree_*.deb
|
||||
compose-metadata.json
|
||||
Loading…
Add table
Add a link
Reference in a new issue