bp_wb/.gitignore
mmabdalla c14f186263 Initial project setup: Create directory structure and configuration files
- Created manifest.yaml with Node.js runtime and routes
- Set up package.json with React, TypeScript, Vite, and dependencies
- Created TypeScript and Vite configuration files
- Set up ESLint and Prettier
- Created complete directory structure (frontend, backend, migrations)
- Created initial database schema migration
- Set up Express server with route handlers
- Created frontend entry point files
- Added version.txt with build 0.1.0.001
2025-12-28 14:59:01 +02:00

50 lines
429 B
Text

# Dependencies
node_modules/
package-lock.json
yarn.lock
# Build outputs
dist/
build/
*.tsbuildinfo
# Environment variables
.env
.env.local
.env.*.local
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Logs
*.log
logs/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Testing
coverage/
.nyc_output/
# Temporary files
tmp/
temp/
*.tmp
# Database
*.db
*.sqlite
*.sqlite3
# Deployment
*.zip
!builds/**/*.zip