chore: clean repository (full-reset)
This commit is contained in:
parent
021d37edaa
commit
f6fd915a1b
|
|
@ -1,47 +0,0 @@
|
|||
{
|
||||
"name": "pocketbase-lite",
|
||||
"version": "0.1.0",
|
||||
"paths": {
|
||||
"data": "collections/",
|
||||
"media": "media/",
|
||||
"indexes": ".gitapp/indexes/"
|
||||
},
|
||||
"schemas": [
|
||||
{
|
||||
"id": "cuisines",
|
||||
"file": "schemas/cuisines.json",
|
||||
"glob": "collections/cuisines/*.json"
|
||||
},
|
||||
{
|
||||
"id": "tags",
|
||||
"file": "schemas/tags.json",
|
||||
"glob": "collections/tags/*.json"
|
||||
},
|
||||
{
|
||||
"id": "users",
|
||||
"file": "schemas/users.json",
|
||||
"glob": "collections/users/*.json"
|
||||
},
|
||||
{
|
||||
"id": "recipes",
|
||||
"file": "schemas/recipes.json",
|
||||
"glob": "collections/recipes/*.json"
|
||||
},
|
||||
{
|
||||
"id": "ingredients",
|
||||
"file": "schemas/ingredients.json",
|
||||
"glob": "collections/ingredients/*.json"
|
||||
}
|
||||
],
|
||||
"operations": [],
|
||||
"policies": {
|
||||
"roles": [
|
||||
"viewer",
|
||||
"editor"
|
||||
],
|
||||
"acl": null
|
||||
},
|
||||
"lfs": {
|
||||
"enabled": false
|
||||
}
|
||||
}
|
||||
|
|
@ -1,24 +0,0 @@
|
|||
{
|
||||
"$id": "cuisines",
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"name",
|
||||
"region"
|
||||
],
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"region": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"flag": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"$id": "ingredients",
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"name",
|
||||
"quantity"
|
||||
],
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"quantity": {
|
||||
"type": "string"
|
||||
},
|
||||
"unit": {
|
||||
"type": "string"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"recipe": {
|
||||
"type": "string",
|
||||
"x-relation": {
|
||||
"collection": "recipes",
|
||||
"type": "single"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,69 +0,0 @@
|
|||
{
|
||||
"$id": "recipes",
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"title",
|
||||
"description"
|
||||
],
|
||||
"properties": {
|
||||
"title": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"prepTime": {
|
||||
"type": "integer",
|
||||
"minimum": 0
|
||||
},
|
||||
"cookTime": {
|
||||
"type": "integer",
|
||||
"minimum": 0
|
||||
},
|
||||
"servings": {
|
||||
"type": "integer",
|
||||
"minimum": 1
|
||||
},
|
||||
"image": {
|
||||
"type": "string"
|
||||
},
|
||||
"instructions": {
|
||||
"type": "string"
|
||||
},
|
||||
"difficulty": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"easy",
|
||||
"medium",
|
||||
"hard"
|
||||
]
|
||||
},
|
||||
"author": {
|
||||
"type": "string",
|
||||
"x-relation": {
|
||||
"collection": "users",
|
||||
"type": "single"
|
||||
}
|
||||
},
|
||||
"cuisine": {
|
||||
"type": "string",
|
||||
"x-relation": {
|
||||
"collection": "cuisines",
|
||||
"type": "single"
|
||||
}
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"x-relation": {
|
||||
"collection": "tags",
|
||||
"type": "multiple",
|
||||
"maxItems": 10
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
{
|
||||
"$id": "tags",
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"name"
|
||||
],
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
{
|
||||
"$id": "users",
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"name"
|
||||
],
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"bio": {
|
||||
"type": "string"
|
||||
},
|
||||
"avatar": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"name": "Italian",
|
||||
"region": "Europe",
|
||||
"description": "Pasta, pizza, and Mediterranean flavors",
|
||||
"flag": "🇮🇹",
|
||||
"created": "2025-12-19T15:50:32.643Z",
|
||||
"updated": "2025-12-19T15:50:32.643Z"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"name": "Japanese",
|
||||
"region": "Asia",
|
||||
"description": "Sushi, ramen, and umami flavors",
|
||||
"flag": "🇯🇵",
|
||||
"created": "2025-12-19T15:50:32.643Z",
|
||||
"updated": "2025-12-19T15:50:32.643Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "olive oil",
|
||||
"quantity": "1",
|
||||
"unit": "oz",
|
||||
"notes": "minced",
|
||||
"recipe": "reci_1766159431932_3",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "garlic",
|
||||
"quantity": "3/4",
|
||||
"unit": "ml",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_12",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "pasta",
|
||||
"quantity": "1/2",
|
||||
"unit": "tsp",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_13",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "rice",
|
||||
"quantity": "3/4",
|
||||
"unit": "tbsp",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_1",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "soy sauce",
|
||||
"quantity": "1/2",
|
||||
"unit": "tsp",
|
||||
"notes": "diced",
|
||||
"recipe": "reci_1766159431932_18",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "ginger",
|
||||
"quantity": "1/2",
|
||||
"unit": "piece",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_17",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "chili",
|
||||
"quantity": "1/2",
|
||||
"unit": "lb",
|
||||
"notes": "finely chopped",
|
||||
"recipe": "reci_1766159431932_5",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "coconut milk",
|
||||
"quantity": "1/2",
|
||||
"unit": "g",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_17",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "lime",
|
||||
"quantity": "1/4",
|
||||
"unit": "piece",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_19",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "cilantro",
|
||||
"quantity": "3/4",
|
||||
"unit": "piece",
|
||||
"notes": "minced",
|
||||
"recipe": "reci_1766159431932_6",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "eggs",
|
||||
"quantity": "3/4",
|
||||
"unit": "lb",
|
||||
"notes": "finely chopped",
|
||||
"recipe": "reci_1766159431932_12",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "flour",
|
||||
"quantity": "1/2",
|
||||
"unit": "tsp",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_11",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "onion",
|
||||
"quantity": "3/4",
|
||||
"unit": "oz",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_14",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "olive oil",
|
||||
"quantity": "2",
|
||||
"unit": "tsp",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_0",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "garlic",
|
||||
"quantity": "1/4",
|
||||
"unit": "tbsp",
|
||||
"notes": "minced",
|
||||
"recipe": "reci_1766159431932_18",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "onion",
|
||||
"quantity": "3/4",
|
||||
"unit": "tbsp",
|
||||
"notes": "finely chopped",
|
||||
"recipe": "reci_1766159431932_12",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "salt",
|
||||
"quantity": "3",
|
||||
"unit": "tsp",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_1",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "pepper",
|
||||
"quantity": "3/4",
|
||||
"unit": "g",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_18",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "butter",
|
||||
"quantity": "3",
|
||||
"unit": "tbsp",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_2",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "chicken breast",
|
||||
"quantity": "3/4",
|
||||
"unit": "tsp",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_12",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "tomatoes",
|
||||
"quantity": "1/2",
|
||||
"unit": "cup",
|
||||
"notes": "minced",
|
||||
"recipe": "reci_1766159431932_19",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "basil",
|
||||
"quantity": "2",
|
||||
"unit": "oz",
|
||||
"notes": "finely chopped",
|
||||
"recipe": "reci_1766159431932_14",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "parmesan cheese",
|
||||
"quantity": "3",
|
||||
"unit": "oz",
|
||||
"notes": "minced",
|
||||
"recipe": "reci_1766159431932_9",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "salt",
|
||||
"quantity": "2",
|
||||
"unit": "ml",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_1",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "pasta",
|
||||
"quantity": "3",
|
||||
"unit": "lb",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_4",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "rice",
|
||||
"quantity": "1/4",
|
||||
"unit": "g",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_15",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "soy sauce",
|
||||
"quantity": "3/4",
|
||||
"unit": "piece",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_0",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "ginger",
|
||||
"quantity": "1/2",
|
||||
"unit": "cup",
|
||||
"notes": "minced",
|
||||
"recipe": "reci_1766159431932_15",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "chili",
|
||||
"quantity": "1",
|
||||
"unit": "cup",
|
||||
"notes": "sliced",
|
||||
"recipe": "reci_1766159431932_12",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "coconut milk",
|
||||
"quantity": "3/4",
|
||||
"unit": "tsp",
|
||||
"notes": "diced",
|
||||
"recipe": "reci_1766159431932_7",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "lime",
|
||||
"quantity": "2",
|
||||
"unit": "tbsp",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_16",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "cilantro",
|
||||
"quantity": "3/4",
|
||||
"unit": "lb",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_9",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "eggs",
|
||||
"quantity": "3",
|
||||
"unit": "oz",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_11",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "flour",
|
||||
"quantity": "2",
|
||||
"unit": "tbsp",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_4",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "pepper",
|
||||
"quantity": "1",
|
||||
"unit": "oz",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_18",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "olive oil",
|
||||
"quantity": "1/2",
|
||||
"unit": "piece",
|
||||
"notes": "finely chopped",
|
||||
"recipe": "reci_1766159431932_5",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "garlic",
|
||||
"quantity": "3/4",
|
||||
"unit": "tbsp",
|
||||
"notes": "sliced",
|
||||
"recipe": "reci_1766159431932_10",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "onion",
|
||||
"quantity": "1/4",
|
||||
"unit": "g",
|
||||
"notes": "minced",
|
||||
"recipe": "reci_1766159431932_6",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "salt",
|
||||
"quantity": "2",
|
||||
"unit": "g",
|
||||
"notes": "sliced",
|
||||
"recipe": "reci_1766159431932_15",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "pepper",
|
||||
"quantity": "3/4",
|
||||
"unit": "g",
|
||||
"notes": "sliced",
|
||||
"recipe": "reci_1766159431932_9",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "butter",
|
||||
"quantity": "3/4",
|
||||
"unit": "tsp",
|
||||
"notes": "sliced",
|
||||
"recipe": "reci_1766159431932_19",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "chicken breast",
|
||||
"quantity": "1/2",
|
||||
"unit": "oz",
|
||||
"notes": "finely chopped",
|
||||
"recipe": "reci_1766159431932_3",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "tomatoes",
|
||||
"quantity": "2",
|
||||
"unit": "tbsp",
|
||||
"notes": "minced",
|
||||
"recipe": "reci_1766159431932_18",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "basil",
|
||||
"quantity": "2",
|
||||
"unit": "oz",
|
||||
"notes": "finely chopped",
|
||||
"recipe": "reci_1766159431932_13",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "parmesan cheese",
|
||||
"quantity": "3/4",
|
||||
"unit": "lb",
|
||||
"notes": "finely chopped",
|
||||
"recipe": "reci_1766159431932_15",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "butter",
|
||||
"quantity": "1/4",
|
||||
"unit": "oz",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_13",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "pasta",
|
||||
"quantity": "1",
|
||||
"unit": "g",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_9",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "rice",
|
||||
"quantity": "2",
|
||||
"unit": "tbsp",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_18",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "soy sauce",
|
||||
"quantity": "3",
|
||||
"unit": "piece",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_2",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "ginger",
|
||||
"quantity": "2",
|
||||
"unit": "cup",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_0",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "chili",
|
||||
"quantity": "1/4",
|
||||
"unit": "piece",
|
||||
"notes": "finely chopped",
|
||||
"recipe": "reci_1766159431932_10",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "coconut milk",
|
||||
"quantity": "1",
|
||||
"unit": "piece",
|
||||
"notes": "diced",
|
||||
"recipe": "reci_1766159431932_19",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "lime",
|
||||
"quantity": "2",
|
||||
"unit": "lb",
|
||||
"notes": "sliced",
|
||||
"recipe": "reci_1766159431932_11",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "cilantro",
|
||||
"quantity": "1",
|
||||
"unit": "tsp",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_8",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "eggs",
|
||||
"quantity": "1/2",
|
||||
"unit": "ml",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_2",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "flour",
|
||||
"quantity": "1",
|
||||
"unit": "cup",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_8",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "chicken breast",
|
||||
"quantity": "1/2",
|
||||
"unit": "tsp",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_9",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "olive oil",
|
||||
"quantity": "1/4",
|
||||
"unit": "g",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_9",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "garlic",
|
||||
"quantity": "1",
|
||||
"unit": "g",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_9",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "onion",
|
||||
"quantity": "1/2",
|
||||
"unit": "cup",
|
||||
"notes": "minced",
|
||||
"recipe": "reci_1766159431932_12",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "salt",
|
||||
"quantity": "1/4",
|
||||
"unit": "ml",
|
||||
"notes": "sliced",
|
||||
"recipe": "reci_1766159431932_13",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "pepper",
|
||||
"quantity": "1/2",
|
||||
"unit": "tbsp",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_8",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "butter",
|
||||
"quantity": "1/4",
|
||||
"unit": "lb",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_8",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "chicken breast",
|
||||
"quantity": "1/4",
|
||||
"unit": "lb",
|
||||
"notes": "sliced",
|
||||
"recipe": "reci_1766159431932_13",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "tomatoes",
|
||||
"quantity": "1/4",
|
||||
"unit": "tsp",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_6",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "basil",
|
||||
"quantity": "3/4",
|
||||
"unit": "tsp",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_12",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "parmesan cheese",
|
||||
"quantity": "1/2",
|
||||
"unit": "oz",
|
||||
"notes": "minced",
|
||||
"recipe": "reci_1766159431932_5",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "tomatoes",
|
||||
"quantity": "1",
|
||||
"unit": "piece",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_15",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "pasta",
|
||||
"quantity": "1/4",
|
||||
"unit": "piece",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_16",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "rice",
|
||||
"quantity": "3/4",
|
||||
"unit": "oz",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_0",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "soy sauce",
|
||||
"quantity": "3",
|
||||
"unit": "g",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_7",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "ginger",
|
||||
"quantity": "2",
|
||||
"unit": "lb",
|
||||
"notes": "minced",
|
||||
"recipe": "reci_1766159431932_0",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "chili",
|
||||
"quantity": "1",
|
||||
"unit": "tbsp",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_6",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "coconut milk",
|
||||
"quantity": "1",
|
||||
"unit": "cup",
|
||||
"notes": "diced",
|
||||
"recipe": "reci_1766159431932_1",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "lime",
|
||||
"quantity": "1/2",
|
||||
"unit": "piece",
|
||||
"notes": "diced",
|
||||
"recipe": "reci_1766159431932_15",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "cilantro",
|
||||
"quantity": "3",
|
||||
"unit": "lb",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_16",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "eggs",
|
||||
"quantity": "1/4",
|
||||
"unit": "lb",
|
||||
"notes": "sliced",
|
||||
"recipe": "reci_1766159431932_15",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "flour",
|
||||
"quantity": "1/4",
|
||||
"unit": "g",
|
||||
"notes": "finely chopped",
|
||||
"recipe": "reci_1766159431932_13",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "basil",
|
||||
"quantity": "1/4",
|
||||
"unit": "g",
|
||||
"notes": "minced",
|
||||
"recipe": "reci_1766159431932_18",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "olive oil",
|
||||
"quantity": "1/4",
|
||||
"unit": "tbsp",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_8",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "garlic",
|
||||
"quantity": "2",
|
||||
"unit": "piece",
|
||||
"notes": "minced",
|
||||
"recipe": "reci_1766159431932_11",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "onion",
|
||||
"quantity": "3/4",
|
||||
"unit": "cup",
|
||||
"notes": "sliced",
|
||||
"recipe": "reci_1766159431932_2",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "salt",
|
||||
"quantity": "1",
|
||||
"unit": "ml",
|
||||
"notes": "minced",
|
||||
"recipe": "reci_1766159431932_14",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "pepper",
|
||||
"quantity": "1/4",
|
||||
"unit": "piece",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_13",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "butter",
|
||||
"quantity": "2",
|
||||
"unit": "cup",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_14",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "chicken breast",
|
||||
"quantity": "1",
|
||||
"unit": "g",
|
||||
"notes": "diced",
|
||||
"recipe": "reci_1766159431932_1",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "tomatoes",
|
||||
"quantity": "3",
|
||||
"unit": "g",
|
||||
"notes": null,
|
||||
"recipe": "reci_1766159431932_13",
|
||||
"created": "2025-12-19T15:50:35.077Z",
|
||||
"updated": "2025-12-19T15:50:35.077Z"
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue