- Add dev runner main.py that prefers local src/ over installed pkgmgr - Move Arch/Debian/Fedora packaging files under packaging/* and update build scripts - Adjust .gitignore/.dockerignore for new packaging paths and src/source/ - Improve config defaults discovery to support src/ layout and installed packages - Update architecture diagram and add TODO overview for TAGS/MIRROR/SIGNING_KEY https://chatgpt.com/share/693a76a0-e408-800f-9939-868524cbef4d
31 lines
310 B
Plaintext
31 lines
310 B
Plaintext
# Docker build context cleanup
|
|
|
|
# Nix local store/cache
|
|
.nix/
|
|
|
|
# Git internals
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# venvs
|
|
.venv/
|
|
venv/
|
|
.venvs/
|
|
|
|
# Editor/OS noise
|
|
.vscode/
|
|
.idea/
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Arch pkg artifacts
|
|
*.pkg.tar.*
|
|
*.log
|
|
packaging/arch/package-manager-* |