devai 0.5.12

Command Agent runner to accelerate production coding with genai.
# -- Base
.*
!.gitignore
!.github

_*
!_base/
!_init/
# '_' in src dir, ok.
!**/src/**/_*

*.lock
*.lockb
*.log

# -- Devai
# Only allow .devai/custom and .devai/Config.toml
# Note: Here the starting `/` will just include the top .devai. 
#       Remove the starting `/` to include all .devai/custom even if their in a sub dir
# !/.devai/
# .devai/*
# !.devai/custom/
# !.devai/custom/**
# !.devai/Config.toml
# Ignore the .devai
src/**/*.devai

# -- Devai for test
!/tests-data/sandbox-01/.devai/
/tests-data/sandbox-01/.devai/*
!/tests-data/sandbox-01/.devai/config.toml

# -- 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

# -- 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