consolidate database schema and remove recipe revisions
This commit is contained in:
@@ -42,8 +42,8 @@ python3 -m pip install --user -r requirements-dev.txt
|
||||
## Database
|
||||
|
||||
SQLite is the canonical writable store. The database is located at
|
||||
`var/recipe-book.sqlite` and is intentionally excluded from Git. Numbered SQL
|
||||
migrations in `migrations/` define its schema.
|
||||
`var/recipe-book.sqlite` and is intentionally excluded from Git. The single
|
||||
baseline in `migrations/001_initial.sql` defines its complete schema.
|
||||
|
||||
Create a new local database from the portable culinary dataset:
|
||||
|
||||
@@ -51,16 +51,9 @@ Create a new local database from the portable culinary dataset:
|
||||
npm run db:reset
|
||||
```
|
||||
|
||||
This command replaces an existing local database. For an existing database,
|
||||
apply pending migrations without replacing data:
|
||||
|
||||
```bash
|
||||
npm run db:migrate
|
||||
```
|
||||
|
||||
`npm run db:sync` is an alias for the safe migration command. YAML under
|
||||
`culinary/` is retained as portable seed and interchange data; normal edits in
|
||||
the management application write to SQLite.
|
||||
This command replaces an existing local database. There is intentionally no
|
||||
legacy upgrade chain. YAML under `culinary/` is retained as portable seed and
|
||||
interchange data; normal edits in the management application write to SQLite.
|
||||
|
||||
See [Local application](docs/local-application.md) for more detail.
|
||||
|
||||
|
||||
@@ -19,7 +19,6 @@
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"recipe_id": { "$ref": "common.schema.json#/$defs/id" },
|
||||
"recipe_revision": { "$ref": "common.schema.json#/$defs/revision" },
|
||||
"order": { "type": "integer", "minimum": 1 },
|
||||
"servings": { "$ref": "common.schema.json#/$defs/positiveDecimal" },
|
||||
"section": { "type": "string" },
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
},
|
||||
"nonEmptyString": { "type": "string", "minLength": 1 },
|
||||
"schemaVersion": { "const": 2 },
|
||||
"revision": { "type": "integer", "minimum": 1 },
|
||||
"date": { "type": "string", "format": "date" },
|
||||
"dateTime": { "type": "string", "format": "date-time" },
|
||||
"decimal": { "type": "number", "minimum": 0 },
|
||||
|
||||
@@ -4,12 +4,11 @@
|
||||
"title": "Disposable derived recipe values",
|
||||
"description": "Calculated output. This document is never canonical culinary or purchasing input.",
|
||||
"type": "object",
|
||||
"required": ["schema_version", "recipe_id", "recipe_revision", "calculation_version", "calculated_at", "input_fingerprint"],
|
||||
"required": ["schema_version", "recipe_id", "calculation_version", "calculated_at", "input_fingerprint"],
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"schema_version": { "$ref": "common.schema.json#/$defs/schemaVersion" },
|
||||
"recipe_id": { "$ref": "common.schema.json#/$defs/id" },
|
||||
"recipe_revision": { "$ref": "common.schema.json#/$defs/revision" },
|
||||
"calculation_version": { "type": "integer", "minimum": 1 },
|
||||
"calculated_at": { "$ref": "common.schema.json#/$defs/dateTime" },
|
||||
"input_fingerprint": { "type": "string", "pattern": "^[a-f0-9]{64}$" },
|
||||
|
||||
@@ -3,13 +3,11 @@
|
||||
"$id": "https://recipes.uuard.com/schemas/v2/recipe.schema.json",
|
||||
"title": "Canonical recipe",
|
||||
"type": "object",
|
||||
"required": ["schema_version", "id", "revision", "status", "title", "yield", "components", "steps", "categories", "tags"],
|
||||
"required": ["schema_version", "id", "title", "yield", "components", "steps", "categories", "tags"],
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"schema_version": { "$ref": "common.schema.json#/$defs/schemaVersion" },
|
||||
"id": { "$ref": "common.schema.json#/$defs/id" },
|
||||
"revision": { "$ref": "common.schema.json#/$defs/revision" },
|
||||
"status": { "type": "string", "enum": ["draft", "testing", "active", "retired", "archived"] },
|
||||
"title": { "$ref": "common.schema.json#/$defs/nonEmptyString" },
|
||||
"summary": { "type": "string" },
|
||||
"categories": { "type": "array", "items": { "$ref": "common.schema.json#/$defs/nonEmptyString" }, "uniqueItems": true },
|
||||
@@ -113,7 +111,6 @@
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"recipe_id": { "$ref": "common.schema.json#/$defs/id" },
|
||||
"revision": { "$ref": "common.schema.json#/$defs/revision" },
|
||||
"component_id": { "$ref": "common.schema.json#/$defs/id" }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: 0_recipe_test
|
||||
revision: 4
|
||||
status: draft
|
||||
title: 0-recipe-test
|
||||
categories: []
|
||||
tags: []
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: alkaline_soy_meat_marinade
|
||||
revision: 2
|
||||
status: draft
|
||||
title: Alkaline Soy Meat Marinade
|
||||
categories:
|
||||
- sauce
|
||||
@@ -57,5 +55,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before
|
||||
activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: amorosos_roll
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Amoroso's Roll
|
||||
categories:
|
||||
- bread
|
||||
@@ -81,4 +79,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: apricot_glaze
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Apricot Glaze
|
||||
categories:
|
||||
- sauce
|
||||
@@ -82,4 +80,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: auntie_annes_pretzels
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Auntie Anne's Pretzels
|
||||
categories:
|
||||
- bread
|
||||
@@ -131,4 +129,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: bagel
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Bagel
|
||||
categories:
|
||||
- bread
|
||||
@@ -65,4 +63,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: baileys_sourdough
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Bailey's Sourdough
|
||||
categories:
|
||||
- bread
|
||||
@@ -170,4 +168,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: banana_bread
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Banana Bread
|
||||
categories:
|
||||
- dessert
|
||||
@@ -114,4 +112,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: beer_cheese
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Beer Cheese
|
||||
categories:
|
||||
- sauce
|
||||
@@ -130,4 +128,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: benihana_yum_yum_sauce
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Benihana Yum Yum Sauce
|
||||
categories:
|
||||
- sauce
|
||||
@@ -122,4 +120,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: berry_bagel
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Berry Bagel
|
||||
categories:
|
||||
- bread
|
||||
@@ -148,4 +146,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: berry_muffin
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Berry Muffin
|
||||
categories:
|
||||
- dessert
|
||||
@@ -120,4 +118,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: blueberry_raspberry_blend
|
||||
revision: 1
|
||||
status: active
|
||||
title: Blueberry–Raspberry Blend
|
||||
categories:
|
||||
- component
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: broccoli_cheddar_soup
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Broccoli Cheddar Soup
|
||||
categories:
|
||||
- soup
|
||||
@@ -219,4 +217,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: buttercream
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Buttercream
|
||||
categories:
|
||||
- sauce
|
||||
@@ -82,4 +80,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: buttermilk_biscuits
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Buttermilk Biscuits
|
||||
categories:
|
||||
- bread
|
||||
@@ -134,4 +132,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: caramel_sauce
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Caramel Sauce
|
||||
categories:
|
||||
- sauce
|
||||
@@ -117,4 +115,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: caramelized_onion
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Caramelized Onion
|
||||
categories:
|
||||
- side
|
||||
@@ -99,4 +97,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: carrot_soup
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Carrot Soup
|
||||
categories:
|
||||
- soup
|
||||
@@ -69,4 +67,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: cheese_danish_filling
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Cheese Danish Filling
|
||||
categories:
|
||||
- pastry
|
||||
@@ -84,4 +82,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: cheesecake
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Cheesecake
|
||||
categories:
|
||||
- dessert
|
||||
@@ -154,4 +152,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: chick_fil_a_sauce
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Chick-fil-A Sauce
|
||||
categories:
|
||||
- sauce
|
||||
@@ -61,4 +59,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: chicken_sausage
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Chicken Sausage
|
||||
categories:
|
||||
- meat
|
||||
@@ -152,4 +150,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: chicken_velvet
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Chicken Velvet
|
||||
categories:
|
||||
- meat
|
||||
@@ -102,4 +100,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: chilis_avocado_ranch
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Chili's Avocado Ranch
|
||||
categories:
|
||||
- sauce
|
||||
@@ -54,4 +52,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: chipotle_pinto_beans
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Chipotle Pinto Beans
|
||||
categories:
|
||||
- side
|
||||
@@ -131,4 +129,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: chocolate_biscotti
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Chocolate Biscotti
|
||||
categories:
|
||||
- dessert
|
||||
@@ -164,4 +162,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: chocolate_chip_cookie
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Chocolate Chip Cookie
|
||||
categories:
|
||||
- dessert
|
||||
@@ -150,4 +148,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: chocolate_ganache
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Chocolate Ganache
|
||||
categories:
|
||||
- sauce
|
||||
@@ -50,4 +48,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: chow_mein_sauce
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Chow Mein Sauce
|
||||
categories:
|
||||
- sauce
|
||||
@@ -100,4 +98,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: cilantro_lime_rice
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Cilantro Lime Rice
|
||||
categories:
|
||||
- side
|
||||
@@ -101,4 +99,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: cinnamon_crunch_bagel
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Cinnamon Crunch Bagel
|
||||
categories:
|
||||
- bread
|
||||
@@ -79,4 +77,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: cinnamon_filling
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Cinnamon Filling
|
||||
categories:
|
||||
- component
|
||||
@@ -79,4 +77,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: cinnamon_roll
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Cinnamon Roll
|
||||
categories:
|
||||
- bread
|
||||
@@ -196,4 +194,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: cinnamon_sugar
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Cinnamon Sugar
|
||||
categories:
|
||||
- component
|
||||
@@ -51,4 +49,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: crab_rangoon
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Crab Rangoon
|
||||
categories:
|
||||
- side
|
||||
@@ -120,4 +118,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: cream_cheese_icing
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Cream Cheese Icing
|
||||
categories:
|
||||
- sauce
|
||||
@@ -68,4 +66,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: cream_cheese_icing_2
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Cream Cheese Icing 2
|
||||
categories:
|
||||
- sauce
|
||||
@@ -125,4 +123,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: creamed_berry_muffin
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Creamed Berry Muffin
|
||||
categories:
|
||||
- dessert
|
||||
@@ -140,4 +138,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: creamed_chocolate_chip_muffin
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Creamed Chocolate Chip Muffin
|
||||
categories:
|
||||
- dessert
|
||||
@@ -142,4 +140,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: cuban_mustard_mayo
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Cuban Mustard Mayo
|
||||
categories:
|
||||
- sauce
|
||||
@@ -44,4 +42,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: dark_espresso_brownie
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Dark Espresso Brownie
|
||||
categories:
|
||||
- dessert
|
||||
@@ -153,4 +151,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: dinner_rolls
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Dinner Rolls
|
||||
categories:
|
||||
- bread
|
||||
@@ -133,4 +131,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: dominos_cheddar_cheese_blend
|
||||
revision: 1
|
||||
status: testing
|
||||
title: Domino's-Style Cheddar Cheese Blend
|
||||
summary: A home-scale approximation of Domino's proprietary cheddar and pizza-cheese blend.
|
||||
categories: [component]
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: dominos_garlic_oil_blend
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Domino's Garlic Oil Blend
|
||||
categories:
|
||||
- sauce
|
||||
@@ -110,4 +108,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: dominos_oregano_marjoram_blend
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Domino's-Style Oregano–Marjoram Blend
|
||||
categories:
|
||||
- component
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: dominos_pizza
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Domino's Pizza Dough
|
||||
categories:
|
||||
- bread
|
||||
@@ -111,4 +109,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: dominos_pizza_sauce
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Domino's Pizza Sauce
|
||||
categories:
|
||||
- sauce
|
||||
@@ -69,4 +67,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: dominos_pizza_sauce_v2
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Domino's Pizza Sauce V2
|
||||
categories:
|
||||
- sauce
|
||||
@@ -146,4 +144,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: dominos_pizza_sauce_v3
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Domino's Pizza Sauce V3
|
||||
categories:
|
||||
- sauce
|
||||
@@ -153,4 +151,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: dominos_stuffed_cheesy_bread
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Domino's Stuffed Cheesy Bread
|
||||
categories:
|
||||
- bread
|
||||
@@ -112,4 +110,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: donuts
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Donuts
|
||||
categories:
|
||||
- dessert
|
||||
@@ -147,4 +145,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: egg_noodle
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Egg Noodle
|
||||
categories:
|
||||
- side
|
||||
@@ -58,4 +56,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: egg_replacer
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Egg Replacer
|
||||
categories:
|
||||
- component
|
||||
@@ -65,4 +63,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: english_muffin
|
||||
revision: 1
|
||||
status: draft
|
||||
title: English Muffin
|
||||
categories:
|
||||
- bread
|
||||
@@ -121,4 +119,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: focaccia
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Focaccia
|
||||
categories:
|
||||
- bread
|
||||
@@ -124,4 +122,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: fried_rice
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Fried Rice
|
||||
categories:
|
||||
- side
|
||||
@@ -149,4 +147,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: general_tso_sauce
|
||||
revision: 1
|
||||
status: draft
|
||||
title: General Tso's Sauce
|
||||
categories:
|
||||
- sauce
|
||||
@@ -135,4 +133,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: ginger_molasses_cookie
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Ginger Molasses Cookie
|
||||
categories:
|
||||
- dessert
|
||||
@@ -143,4 +141,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: graham_cracker_crust
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Graham Cracker Crust
|
||||
categories:
|
||||
- pastry
|
||||
@@ -70,4 +68,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: gravy
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Gravy
|
||||
categories:
|
||||
- sauce
|
||||
@@ -89,4 +87,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: guacamole
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Guacamole
|
||||
categories:
|
||||
- side
|
||||
@@ -91,4 +89,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: gyro_meat
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Gyro Meat
|
||||
categories:
|
||||
- meat
|
||||
@@ -181,4 +179,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: halal_guys_white_sauce_v1
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Halal Guys White Sauce V1
|
||||
categories:
|
||||
- sauce
|
||||
@@ -66,4 +64,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: halal_guys_white_sauce_v2
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Halal Guys White Sauce V2
|
||||
categories:
|
||||
- sauce
|
||||
@@ -73,4 +71,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: hamburger_bun
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Hamburger Bun
|
||||
categories:
|
||||
- bread
|
||||
@@ -115,4 +113,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: hoagie
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Hoagie
|
||||
categories:
|
||||
- bread
|
||||
@@ -72,4 +70,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: hot_fudge_v1
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Hot Fudge V1
|
||||
categories:
|
||||
- sauce
|
||||
@@ -88,4 +86,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: hot_fudge_v2
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Hot Fudge V2
|
||||
categories:
|
||||
- sauce
|
||||
@@ -117,4 +115,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: imos_pizza_dough
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Imo's Pizza Dough
|
||||
categories:
|
||||
- bread
|
||||
@@ -105,4 +103,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: jimmy_johns_kickin_ranch_sauce
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Jimmy John's Kickin' Ranch Sauce
|
||||
categories:
|
||||
- sauce
|
||||
@@ -94,4 +92,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: korean_coater_mix
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Korean Coater Mix
|
||||
categories:
|
||||
- component
|
||||
@@ -70,4 +68,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: korean_fry_batter
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Korean Fry Batter
|
||||
categories:
|
||||
- component
|
||||
@@ -86,4 +84,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: lemon_curd
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Lemon Curd
|
||||
categories:
|
||||
- sauce
|
||||
@@ -90,4 +88,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: lo_mein_sauce
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Lo Mein Sauce
|
||||
categories:
|
||||
- sauce
|
||||
@@ -98,4 +96,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: mac_cheese_sauce
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Mac & Cheese Sauce
|
||||
categories:
|
||||
- sauce
|
||||
@@ -63,4 +61,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: mashed_potato
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Mashed Potato
|
||||
categories:
|
||||
- side
|
||||
@@ -78,4 +76,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: meatball
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Meatball
|
||||
categories:
|
||||
- meat
|
||||
@@ -153,4 +151,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: mexicali_dip
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Mexicali Dip
|
||||
categories:
|
||||
- sauce
|
||||
@@ -94,4 +92,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: mexican_rice
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Mexican Rice
|
||||
categories:
|
||||
- side
|
||||
@@ -92,4 +90,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: mexican_white_sauce
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Mexican White Sauce
|
||||
categories:
|
||||
- sauce
|
||||
@@ -135,4 +133,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: milk
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Milk
|
||||
categories:
|
||||
- component
|
||||
@@ -44,4 +42,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: mod_pizza_dough
|
||||
revision: 1
|
||||
status: draft
|
||||
title: MOD Pizza Dough
|
||||
categories:
|
||||
- bread
|
||||
@@ -95,4 +93,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: mozzarella_cheese_melt_stuffed
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Mozzarella Cheese Melt Stuffed
|
||||
categories:
|
||||
- component
|
||||
@@ -70,4 +68,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: oat_chocolate_cookie
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Oat Chocolate Cookie
|
||||
categories:
|
||||
- dessert
|
||||
@@ -134,4 +132,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: oatmeal_raisin_cookie
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Oatmeal Raisin Cookie
|
||||
categories:
|
||||
- dessert
|
||||
@@ -100,4 +98,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: orange_chicken_sauce
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Orange Chicken Sauce
|
||||
categories:
|
||||
- sauce
|
||||
@@ -183,4 +181,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: orange_juice
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Orange Juice
|
||||
categories:
|
||||
- beverage
|
||||
@@ -43,4 +41,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: p_f_changs_dark_sauce
|
||||
revision: 1
|
||||
status: draft
|
||||
title: P. F. Chang's Dark Sauce
|
||||
categories:
|
||||
- sauce
|
||||
@@ -93,4 +91,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: p_f_changs_honey_sauce
|
||||
revision: 1
|
||||
status: draft
|
||||
title: P. F. Chang's Honey Sauce
|
||||
categories:
|
||||
- sauce
|
||||
@@ -134,4 +132,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: p_f_changs_kung_pao_sauce
|
||||
revision: 1
|
||||
status: draft
|
||||
title: P. F. Chang's Kung Pao Sauce
|
||||
categories:
|
||||
- sauce
|
||||
@@ -88,4 +86,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: p_f_changs_mongolian_beef_sauce
|
||||
revision: 1
|
||||
status: draft
|
||||
title: P. F. Chang's Mongolian Beef Sauce
|
||||
categories:
|
||||
- sauce
|
||||
@@ -99,4 +97,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: p_f_changs_spicy_chicken_sauce
|
||||
revision: 1
|
||||
status: draft
|
||||
title: P. F. Chang's Spicy Chicken Sauce
|
||||
categories:
|
||||
- sauce
|
||||
@@ -101,4 +99,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: p_f_changs_umami_sauce
|
||||
revision: 1
|
||||
status: draft
|
||||
title: P. F. Chang's Umami Sauce
|
||||
categories:
|
||||
- sauce
|
||||
@@ -75,4 +73,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
schema_version: 2
|
||||
id: pancakes
|
||||
revision: 1
|
||||
status: draft
|
||||
title: Pancakes
|
||||
categories:
|
||||
- breakfast
|
||||
@@ -108,4 +106,4 @@ steps:
|
||||
component_ids:
|
||||
- main
|
||||
notes:
|
||||
- Formula uses a nominal 100 g basis; review yield and revision before activation.
|
||||
- Formula uses a nominal 100 g basis; review the yield before use.
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user