- Split virgin tests into separate root and user GitHub Actions workflows (test-virgin-root, test-virgin-user) and adjust Arch container flows - Introduce scripts/installation/venv-create.sh and reuse it from scripts/installation/main.sh with separate root/system and user/dev paths - Add PKGMGR architecture & setup map (assets/map.png) and section in README with link to the up-to-date master page - Simplify README by removing outdated Docker quickstart, usage examples, and AI footer - Extend .gitignore to exclude src/source artifacts https://chatgpt.com/share/6939bbfe-5cb0-800f-8ea8-95628dc911f5
41 lines
480 B
Plaintext
41 lines
480 B
Plaintext
|
|
# Prevents unwanted files from being committed to version control.
|
|
|
|
# Python bytecode
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
.venvs/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/*
|
|
*.egg-info/
|
|
pkg
|
|
src/source
|
|
package-manager-*
|
|
|
|
# debian
|
|
debian/package-manager/
|
|
debian/debhelper-build-stamp
|
|
debian/files
|
|
debian/.debhelper/
|
|
debian/package-manager.substvars
|
|
|
|
# Editor files
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS noise
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Nix Cache to speed up tests
|
|
.nix/
|
|
|
|
# Ignore logs
|
|
*.log
|