mirror of
https://github.com/mii443/rust-genai.git
synced 2025-08-22 16:25:27 +00:00
65 lines
581 B
Plaintext
65 lines
581 B
Plaintext
# -- Base
|
|
.*
|
|
!.gitignore
|
|
!.github
|
|
|
|
_*
|
|
# '_' in src dir, ok.
|
|
!**/src/**/_*
|
|
|
|
*.lock
|
|
*.lockb
|
|
*.log
|
|
|
|
# -- Rust
|
|
target/
|
|
# !Cargo.lock # commented by default
|
|
!.cargo/
|
|
|
|
# -- Safety net
|
|
dist/
|
|
out/
|
|
|
|
# Data Files
|
|
*.db3
|
|
*.parquet
|
|
*.map
|
|
*.zip
|
|
*.gz
|
|
*.tar
|
|
*.tgz
|
|
*.vsix
|
|
|
|
# Videos
|
|
*.mov
|
|
*.mp4
|
|
*.webm
|
|
*.ogg
|
|
*.avi
|
|
|
|
# Images
|
|
*.icns
|
|
*.ico
|
|
*.jpeg
|
|
*.jpg
|
|
*.png
|
|
*.bmp
|
|
|
|
!tests/data/*.jpg
|
|
|
|
# -- Nodejs
|
|
node_modules/
|
|
!.mocharc.yaml
|
|
report.*.json
|
|
|
|
# -- Python
|
|
__pycache__/
|
|
|
|
|
|
# -- others
|
|
# Allows .env (make sure only dev info)
|
|
# !.env # Commented by default
|
|
|
|
# Allow vscode
|
|
# !.vscode # Commented by default
|