Pantry Lead Agent
b93f4677fc
feat: seed default units and tags ( #16 #17 )
...
Deploy to Coolify / Code Quality (pull_request) Has been cancelled
Deploy to Coolify / Run Tests (pull_request) Has been cancelled
Deploy to Coolify / Deploy to Development (pull_request) Has been cancelled
Deploy to Coolify / Deploy to Production (pull_request) Has been cancelled
Deploy to Coolify / Deploy to Test (pull_request) Has been cancelled
Pull Request Checks / Validate PR (pull_request) Has been cancelled
Added comprehensive seed data migrations:
**Units Migration (#16 ):**
- 30 pre-populated measurement units
- Weight: g, kg, mg, lb, oz (base: gram)
- Volume: mL, L, cup, tbsp, tsp, fl oz, gal, qt, pt (base: milliliter)
- Count: piece, dozen, package, bottle, can, jar, box, bag
- Proper conversion factors for metric/imperial
**Tags Migration (#17 ):**
- 33 pre-populated organizational tags
- Position: Fridge, Freezer, Pantry, Cabinet, Countertop, Cellar
- Type: Dairy, Meat, Fish, Vegetables, Fruits, Grains, etc.
- Dietary: Vegan, Vegetarian, Gluten-Free, Organic, Kosher, Halal
- Custom: Low Stock, To Buy, Meal Prep, Leftovers
- Each tag includes icon emoji and color code
Ready for frontend to start creating inventory items.
Closes #16 , #17
2026-02-09 13:00:02 +00:00
4eec4923af
Merge pull request 'feat: add SQL helper functions for inventory management ( #15 )' ( #44 ) from feature/issue-15-sql-functions into develop
Deploy to Coolify / Code Quality (push) Has been cancelled
Deploy to Coolify / Run Tests (push) Has been cancelled
Deploy to Coolify / Deploy to Development (push) Has been cancelled
Deploy to Coolify / Deploy to Production (push) Has been cancelled
Deploy to Coolify / Deploy to Test (push) Has been cancelled
2026-02-09 12:59:05 +00:00
Pantry Lead Agent
f70b90748a
feat: add SQL helper functions for inventory management ( #15 )
...
Pull Request Checks / Validate PR (pull_request) Has been cancelled
Deploy to Coolify / Run Tests (pull_request) Has been cancelled
Deploy to Coolify / Deploy to Development (pull_request) Has been cancelled
Deploy to Coolify / Deploy to Production (pull_request) Has been cancelled
Deploy to Coolify / Code Quality (pull_request) Has been cancelled
Deploy to Coolify / Deploy to Test (pull_request) Has been cancelled
Created 8 helper functions for common inventory operations:
1. get_inventory_details() - Full inventory list with denormalized data
2. get_expiring_items(days) - Items expiring within N days
3. get_items_by_tag(tag_name) - Filter by tag
4. get_low_stock_items(threshold) - Items below quantity threshold
5. update_item_quantity() - Consume/restock with optional auto-delete
6. get_inventory_stats() - Dashboard statistics
7. search_inventory() - Full-text search across items and products
All functions include comments and are optimized for frontend queries.
Closes #15
2026-02-09 12:58:45 +00:00
1c54415a29
Merge pull request 'feat: complete Week 1 frontend setup ( #9 #10 #11 #12 )' ( #43 ) from feature/issue-12-supabase-client into develop
Deploy to Coolify / Code Quality (push) Has been cancelled
Deploy to Coolify / Run Tests (push) Has been cancelled
Deploy to Coolify / Deploy to Development (push) Has been cancelled
Deploy to Coolify / Deploy to Production (push) Has been cancelled
Deploy to Coolify / Deploy to Test (push) Has been cancelled
2026-02-09 12:56:38 +00:00
Pantry Lead Agent
01c5880e37
feat: complete Week 1 frontend setup ( #9 #10 #11 #12 )
...
Deploy to Coolify / Code Quality (pull_request) Has been cancelled
Deploy to Coolify / Run Tests (pull_request) Has been cancelled
Deploy to Coolify / Deploy to Development (pull_request) Has been cancelled
Deploy to Coolify / Deploy to Production (pull_request) Has been cancelled
Deploy to Coolify / Deploy to Test (pull_request) Has been cancelled
Pull Request Checks / Validate PR (pull_request) Has been cancelled
- Install and configure Tailwind CSS (#9 )
- Install Nuxt UI component library (#10 )
- Create app layout with header/footer components (#11 )
- Implement Supabase client composable (#12 )
- Add TypeScript database types
- Create placeholder pages (index, scan, settings)
- Setup responsive navigation with mobile menu
- Configure auth state management
All Week 1 frontend foundation tasks complete.
2026-02-09 12:55:58 +00:00
Pantry Lead Agent
223f4b6ea1
feat: scaffold Nuxt 4 app with minimal template
2026-02-09 12:53:51 +00:00
Claw
436f92cafc
Merge PR #42 : feat: implement Row Level Security policies ( #14 )
Deploy to Coolify / Code Quality (push) Has been cancelled
Deploy to Coolify / Run Tests (push) Has been cancelled
Deploy to Coolify / Deploy to Development (push) Has been cancelled
Deploy to Coolify / Deploy to Production (push) Has been cancelled
Deploy to Coolify / Deploy to Test (push) Has been cancelled
2026-02-09 02:38:52 +00:00
Claw
9f421907eb
feat: add Row Level Security policies ( #14 )
...
Deploy to Coolify / Code Quality (pull_request) Has been cancelled
Deploy to Coolify / Run Tests (pull_request) Has been cancelled
Deploy to Coolify / Deploy to Development (pull_request) Has been cancelled
Deploy to Coolify / Deploy to Production (pull_request) Has been cancelled
Deploy to Coolify / Deploy to Test (pull_request) Has been cancelled
Pull Request Checks / Validate PR (pull_request) Has been cancelled
- Enable RLS on all 6 tables
- inventory_items: shared inventory (all auth users can CRUD)
- products: read-only for users (service role for writes)
- tags: users can manage own tags, read all tags
- item_tags: auth users can tag/untag items
- units: users can create/manage custom units
- user_profiles: users manage only their own profile
- Comprehensive policy comments for documentation
Closes #14
2026-02-09 02:37:51 +00:00
Claw
37dc26bb14
Merge PR #41 : feat: implement database schema ( #13 )
Deploy to Coolify / Code Quality (push) Has been cancelled
Deploy to Coolify / Run Tests (push) Has been cancelled
Deploy to Coolify / Deploy to Development (push) Has been cancelled
Deploy to Coolify / Deploy to Production (push) Has been cancelled
Deploy to Coolify / Deploy to Test (push) Has been cancelled
2026-02-09 02:36:44 +00:00
Claw
441266683c
feat: add initial database schema migration ( #13 )
...
Deploy to Coolify / Deploy to Production (pull_request) Has been cancelled
Deploy to Coolify / Code Quality (pull_request) Has been cancelled
Deploy to Coolify / Run Tests (pull_request) Has been cancelled
Deploy to Coolify / Deploy to Development (pull_request) Has been cancelled
Deploy to Coolify / Deploy to Test (pull_request) Has been cancelled
Pull Request Checks / Validate PR (pull_request) Has been cancelled
- Create all core tables: inventory_items, products, tags, item_tags, units, user_profiles
- Add ENUM types: tag_category, unit_type
- Implement indexes for performance optimization
- Add helper functions: update_updated_at(), convert_unit(), search_products()
- Add triggers for automatic timestamp updates
- Full-text search support for products
- Comprehensive table comments for documentation
Closes #13
2026-02-09 02:34:29 +00:00
Claw
f3ec382124
ci: Add Gitea Actions workflows and CI/CD documentation
Deploy to Coolify / Code Quality (push) Has been cancelled
Deploy to Coolify / Run Tests (push) Has been cancelled
Deploy to Coolify / Deploy to Development (push) Has been cancelled
Deploy to Coolify / Deploy to Production (push) Has been cancelled
Deploy to Coolify / Deploy to Test (push) Has been cancelled
2026-02-08 20:05:04 +00:00
Claw
19874c0b2c
docs: Add dashboard and database access credentials
2026-02-08 20:00:27 +00:00
Claw
e51f204c6b
docs: Add setup guide with Supabase credentials
2026-02-08 19:59:48 +00:00
Claw
c709d3ef89
chore: Add environment configuration and gitignore
2026-02-08 19:58:42 +00:00
Claw
0a59b1d6fb
chore: Add changelog and issue templates
...
- CHANGELOG.md: Keep a Changelog format, semantic versioning
- Issue templates: bug report, feature request, MVP task
- Ready for issue tracking on Gitea
2026-02-08 18:59:52 +00:00
Claw
812c0ace74
docs: Add comprehensive technical documentation
...
Complete documentation suite:
- DATABASE.md: Full schema, RLS policies, functions, queries
- API.md: Supabase client API, Edge functions, realtime
- DEVELOPMENT.md: Setup, workflow, conventions, testing
- DEPLOYMENT.md: Docker Compose, Coolify, monitoring, backups
Ready for development to begin.
2026-02-08 18:56:46 +00:00
Claw
41537fa84c
docs: Initial project documentation
...
- README: Project overview, quick start, tech stack
- PROJECT_PLAN: Vision, roadmap, 6-week MVP timeline
- ARCHITECTURE: System design, data model, tech decisions
Establishes foundation for Pantry - self-hosted kitchen
inventory PWA with barcode scanning.
2026-02-08 18:47:48 +00:00