Files
Xevion b4c708335b feat: add PostgreSQL database integration for projects
- Add SQLx with Postgres support and migration system
- Create projects table with status enum and auto-updated timestamps
- Implement database queries and API response conversion layer
- Add Justfile commands for database management and seeding
- Integrate health checks for both Bun and database connectivity
2026-01-06 02:07:42 -06:00

29 lines
304 B
Plaintext

# Ignore build artifacts and dev files
target/
web/node_modules/
web/.svelte-kit/
web/build/
# VCS
.git/
.gitignore
# IDE
.vscode/
.idea/
*.swp
*.swo
# Logs
*.log
# OS
.DS_Store
Thumbs.db
# Don't ignore these - we need them
!web/build/client
!web/build/server
!web/build/prerendered
!web/build/*.js