MVP Build

This commit is contained in:
Eric Gullickson
2025-08-09 12:47:15 -05:00
parent 2e8816df7f
commit 8f5117a4e2
92 changed files with 5910 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
# UfuelUlogs Feature Capsule
## Quick Summary (50 tokens)
[AI: Complete feature description, main operations, dependencies, caching strategy]
## API Endpoints
- GET /api/fuel-logs - List all fuel-logs
- GET /api/fuel-logs/:id - Get specific lUfuelUlogs
- POST /api/fuel-logs - Create new lUfuelUlogs
- PUT /api/fuel-logs/:id - Update lUfuelUlogs
- DELETE /api/fuel-logs/:id - Delete lUfuelUlogs
## Structure
- **api/** - HTTP endpoints, routes, validators
- **domain/** - Business logic, types, rules
- **data/** - Repository, database queries
- **migrations/** - Feature-specific schema
- **external/** - External API integrations
- **events/** - Event handlers
- **tests/** - All feature tests
- **docs/** - Detailed documentation
## Dependencies
- Internal: core/auth, core/cache
- External: [List any external APIs]
- Database: fuel-logs table
## Quick Commands
```bash
# Run feature tests
npm test -- features/fuel-logs
# Run feature migrations
npm run migrate:feature fuel-logs
```