# -- 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 (typically temporary solos)
src/**/*.devai

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