mirror of
https://github.com/Xevion/xevion.dev.git
synced 2026-01-31 14:26:37 -06:00
- 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
29 lines
304 B
Plaintext
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
|