- Makefile: Update build targets for native library integration - build.zig: Add SQLite linking and native hash library support - scripts/build_rsync.sh: Update rsync embedded binary build process - scripts/build_sqlite.sh: Add SQLite constants generation script - src/assets/README.md: Document embedded asset structure - src/utils/rsync_embedded_binary.zig: Update for new build layout
289 lines
3.3 KiB
Text
289 lines
3.3 KiB
Text
# Root directory protection - binaries must be in bin/
|
|
/api-server
|
|
/worker
|
|
/tui
|
|
/data_manager
|
|
/coverage.out
|
|
.DS_Store
|
|
|
|
# Binaries for programs and plugins
|
|
*.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
|
|
|
|
# Generated SSH test keys for TUI testing
|
|
deployments/test_keys/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Allow committing VS Code settings
|
|
!.vscode/settings.json
|
|
!cli/.vscode/settings.json
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
|
|
# Environment files with secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Secrets directory
|
|
secrets/
|
|
*.key
|
|
*.pem
|
|
*.crt
|
|
*.p12
|
|
|
|
# Build artifacts
|
|
build/
|
|
dist/
|
|
zig-out/
|
|
.zig-cache/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Python cache and artifacts
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
# Python lib directories
|
|
**/site-packages/
|
|
**/lib/python*/
|
|
# Allow scripts/lib for shell libraries
|
|
!scripts/lib/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
# MANIFEST
|
|
|
|
# PyInstaller
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
cover/
|
|
|
|
# Translations
|
|
*.mo
|
|
*.pot
|
|
|
|
# Django stuff:
|
|
*.log
|
|
local_settings.py
|
|
db.sqlite3
|
|
db.sqlite3-journal
|
|
|
|
# Flask stuff:
|
|
instance/
|
|
.webassets-cache
|
|
|
|
# Scrapy stuff:
|
|
.scrapy
|
|
|
|
# Sphinx documentation
|
|
docs/_build/
|
|
|
|
# PyBuilder
|
|
.pybuilder/
|
|
target/
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# IPython
|
|
profile_default/
|
|
ipython_config.py
|
|
|
|
# pyenv
|
|
.python-version
|
|
|
|
# pipenv
|
|
Pipfile.lock
|
|
|
|
# poetry
|
|
poetry.lock
|
|
|
|
# pdm
|
|
.pdm.toml
|
|
|
|
# PEP 582
|
|
__pypackages__/
|
|
|
|
# Celery stuff
|
|
celerybeat-schedule
|
|
celerybeat.pid
|
|
|
|
# SageMath parsed files
|
|
*.sage.py
|
|
|
|
# Environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# Spyder project settings
|
|
.spyderproject
|
|
.spyproject
|
|
|
|
# Rope project settings
|
|
.ropeproject
|
|
|
|
# mkdocs documentation
|
|
/site
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Pyre type checker
|
|
.pyre/
|
|
|
|
# pytype static type analyzer
|
|
.pytype/
|
|
|
|
# Cython debug symbols
|
|
cython_debug/
|
|
|
|
# PyCharm
|
|
.idea/
|
|
|
|
# Project-specific
|
|
ml_jobs/
|
|
test_output/
|
|
# Python build directory only
|
|
**/build/lib/
|
|
**/build/bdist*/
|
|
**/build/scripts*/
|
|
# Allow build/ directory for Docker configs
|
|
!build/
|
|
!build/**
|
|
# But ignore Python build artifacts if they happen
|
|
build/lib/
|
|
build/bdist*/
|
|
coverage.out
|
|
coverage.html
|
|
queue-coverage.out
|
|
coverage/
|
|
|
|
test_results/
|
|
|
|
# documents
|
|
docs/_site/**
|
|
|
|
# Redis dump
|
|
dump.rdb
|
|
|
|
# Configuration files with secrets
|
|
!config_*.yaml
|
|
!config_local.yaml.example
|
|
!config_prod.yaml.example
|
|
|
|
# Database files
|
|
db/*.db
|
|
!db/.gitkeep
|
|
|
|
# API keys and secrets
|
|
*.key
|
|
*.pem
|
|
secrets/
|
|
# Downloaded assets (platform-specific)
|
|
cli/src/assets/rsync/rsync_release_*.bin
|
|
cli/src/assets/sqlite_*/
|
|
|
|
# Local artifacts (e.g. test run outputs)
|
|
.local-artifacts/
|
|
|
|
# Test files
|
|
# test_*.go
|
|
# *_test.go
|
|
*_test_output/
|
|
|
|
# Instruments trace files
|
|
Launch_*.trace/
|
|
|
|
# Native C++ build artifacts
|
|
native/build/
|
|
|
|
# Build artifacts
|
|
bin/
|
|
cli/zig-out/
|
|
cli/.zig-cache/
|
|
zig-out/
|
|
.zig-cache/
|
|
|
|
# Experiment data (local testing)
|
|
experiments/
|
|
data/
|
|
workspaces/
|
|
|
|
# SQLite temporary files
|
|
db/*.db-shm
|
|
db/*.db-wal
|
|
db/*.db
|
|
|
|
# Security files
|
|
.api-keys
|
|
.env.secure
|
|
.env.dev
|
|
ssl/
|
|
*.pem
|
|
*.key
|