mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
26 lines
463 B
Plaintext
26 lines
463 B
Plaintext
# use this file as a whitelist
|
|
*
|
|
!invokeai
|
|
!ldm
|
|
!pyproject.toml
|
|
!README.md
|
|
|
|
# Guard against pulling in any models that might exist in the directory tree
|
|
**/*.pt*
|
|
**/*.ckpt
|
|
|
|
# ignore frontend but whitelist dist
|
|
invokeai/frontend/**
|
|
!invokeai/frontend/dist/**
|
|
|
|
# ignore invokeai/assets but whitelist invokeai/assets/web
|
|
invokeai/assets/**
|
|
!invokeai/assets/web/*.png
|
|
|
|
# ignore python cache and build artifacts
|
|
**/__pycache__
|
|
**/*.pyc
|
|
**/*.pyo
|
|
**/*.pyd
|
|
**/*.egg-info
|