Files
TX/.gitignore
T
Riyadh 51c32e6299 Add migration script for database updates and seeding
Adds a new `migrate` script to the API server package.json and updates the docker-compose.yml to use this script for database migrations and seeding. Also updates the README.md to reflect the new migration command.
2026-05-13 14:26:39 +00:00

76 lines
926 B
Plaintext

# Dependencies
node_modules/
.pnpm-store/
# Build outputs
dist/
build/
out-tsc/
**/*.tsbuildinfo
# Test artifacts
test-results/
playwright-report/
coverage/
.nyc_output/
# Local environment / secrets
.env
.env.*
!.env.example
*.pem
*.key
*.p12
*.pfx
credentials*.json
service-account*.json
# Legacy uploaded session assets (superseded by object storage)
attached_assets/
# Hosted-platform configs and agent state (kept locally, never in git)
.replit
.replitignore
replit.nix
replit.md
.local/
.canvas/
.agents/
.cache/
.config/
.upm/
# Local object storage (used by the local FS storage driver)
storage/
# Logs
*.log
logs/
npm-debug.log*
yarn-error.log*
pnpm-debug.log*
# Editor / IDE
.idea/
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
.cursor/
# OS
.DS_Store
Thumbs.db
*.swp
*.swo
*.bak
*.tmp
*~