Files
gpu-rent/.gitignore
T
Leonid Pershin a9cf2e0f90 Add support for gpu-rent.vars and enhance git update functionality
- Updated .gitignore to include gpu-rent.vars.
- Modified env.example to introduce the UPDATE_GIT variable for controlling git updates during execution.
- Implemented Import-GpuRentVars function in gpu-rent.ps1 to load environment variables from gpu-rent.vars.
- Enhanced gpu-rent.sh to support loading variables from gpu-rent.vars and added logic for handling default and extra arguments.
- Updated CLI documentation to reflect the new gpu-rent.vars file and its usage in configuration.
- Improved bootstrap and provisioning logic to conditionally perform git updates based on the new configuration.
2026-08-21 05:01:53 +03:00

37 lines
589 B
Plaintext

# Secrets and local weights — never commit
.env
.env.*
!.env.example
gpu-rent.vars
models.yaml
extensions.yaml
# SwarmUI checkpoints / LoRA dropped into the app tree
Models/**
!Models/**/.gitkeep
!Models/README.md
Wildcards/**
!Wildcards/**/.gitkeep
!Wildcards/README.md
CustomWorkflows/**
!CustomWorkflows/**/.gitkeep
!CustomWorkflows/README.md
Output/**
!Output/**/.gitkeep
!Output/README.md
# Python
.venv/
__pycache__/
*.pyc
dist/
*.egg-info/
# Local CLI state / SSH key (inside the repo, not under %)
.gpu-rent/
.pytest_cache/
.mypy_cache/