- add grocery category

- add Dockerfile
This commit is contained in:
2025-05-26 21:55:49 +02:00
parent 6118415f05
commit f88a931008
23 changed files with 1304 additions and 937 deletions

View File

@@ -9,17 +9,29 @@ export interface BrandCreate {
name: string;
}
export interface Grocery {
export interface GroceryCategory {
id: number;
name: string;
category: string;
created_at: string;
updated_at?: string;
}
export interface GroceryCategoryCreate {
name: string;
}
export interface Grocery {
id: number;
name: string;
category_id: number;
created_at: string;
updated_at?: string;
category: GroceryCategory;
}
export interface GroceryCreate {
name: string;
category: string;
category_id: number;
}
export interface Product {