Files
TX/.gitignore
T
riyadhafraa 2fa608b93d 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.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 77cfe984-2c65-4152-bb7a-0df28274fe66
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: 5a3829b7-335a-40a6-98a8-de6f98c908ff
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/c3c252e4-c83d-40ca-9fff-99a3ea60701e/77cfe984-2c65-4152-bb7a-0df28274fe66/jLdqQ2v
Replit-Helium-Checkpoint-Created: true
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
*~