30 lines
525 B
Text
30 lines
525 B
Text
|
|
# Ignore .env files - they should be created at runtime
|
||
|
|
backend/.env
|
||
|
|
backend/.env.production
|
||
|
|
|
||
|
|
# Ignore node_modules - we install dependencies during build
|
||
|
|
frontend/node_modules
|
||
|
|
backend/vendor
|
||
|
|
|
||
|
|
# Ignore git
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
|
||
|
|
# Ignore build artifacts
|
||
|
|
frontend/build
|
||
|
|
backend/bootstrap/cache/*
|
||
|
|
backend/storage/logs/*
|
||
|
|
backend/storage/framework/cache/*
|
||
|
|
backend/storage/framework/sessions/*
|
||
|
|
backend/storage/framework/views/*
|
||
|
|
|
||
|
|
# Ignore test files
|
||
|
|
backend/tests
|
||
|
|
frontend/tests
|
||
|
|
|
||
|
|
# Ignore development files
|
||
|
|
.vscode
|
||
|
|
.idea
|
||
|
|
*.log
|
||
|
|
.DS_Store
|