nanoClaw/.gitignore

34 lines
455 B
Plaintext

# Ignore everything
*
# # Allow directories
!*/
# ignore workspaces
/workspaces
# Allow docs and settings
!/docs/*.md
!/README.md
!.gitignore
# Allow backend source
!*.py
!*.toml
# Allow frontend source
!frontend/
!frontend/package.json
!frontend/package-lock.json
!frontend/*.js
!frontend/*.html
!frontend/src/
!frontend/src/**/*.js
!frontend/src/**/*.vue
!frontend/src/**/*.css
!frontend/public/
!frontend/public/**
# CI / CD
!.github/workflows/*