- Enable 'nix-command' and 'flakes' globally via flake.nix nixConfig - Improve .gitignore by excluding *.log files - Add integration test for shallow clone mode using pkgmgr install pipeline - Ensures pkgmgr works end-to-end inside test container with --clone-mode shallow See: https://chatgpt.com/share/69332bc4-a128-800f-a69c-fdc24c4cc7fe
33 lines
357 B
Plaintext
33 lines
357 B
Plaintext
|
|
# Prevents unwanted files from being committed to version control.
|
|
|
|
# Custom Config file
|
|
config/config.yaml
|
|
|
|
# Python bytecode
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
.venvs/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# Editor files
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS noise
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Nix Cache to speed up tests
|
|
.nix/
|
|
|
|
# Ignore logs
|
|
*.log |