33 lines
320 B
Plaintext
33 lines
320 B
Plaintext
# AutoPilot — ignore secrets and build artifacts
|
|
.env
|
|
*.env
|
|
|
|
# Java build artifacts
|
|
**/target/
|
|
**/*.class
|
|
**/*.jar
|
|
!**/mvnw
|
|
!**/mvnw.cmd
|
|
|
|
# Node / Frontend
|
|
**/node_modules/
|
|
**/dist/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
*.log.*
|
|
|
|
# Data / runtime
|
|
**/data/
|
|
**/screenshots/
|
|
**/DriverFiles/
|