mirror of
https://github.com/mealie-recipes/mealie.git
synced 2024-12-21 19:41:22 -08:00
8d1ce5c190
Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
102 lines
4.0 KiB
Python
102 lines
4.0 KiB
Python
from pathlib import Path
|
|
|
|
CWD = Path(__file__).parent
|
|
|
|
locale_dir = CWD / "locale"
|
|
|
|
backup_version_44e8d670719d_1 = CWD / "backups/backup-version-44e8d670719d-1.zip"
|
|
"""44e8d670719d: add extras to shopping lists, list items, and ingredient foods"""
|
|
|
|
backup_version_44e8d670719d_2 = CWD / "backups/backup-version-44e8d670719d-2.zip"
|
|
"""44e8d670719d: add extras to shopping lists, list items, and ingredient foods"""
|
|
|
|
backup_version_44e8d670719d_3 = CWD / "backups/backup-version-44e8d670719d-3.zip"
|
|
"""44e8d670719d: add extras to shopping lists, list items, and ingredient foods"""
|
|
|
|
backup_version_44e8d670719d_4 = CWD / "backups/backup-version-44e8d670719d-4.zip"
|
|
"""44e8d670719d: add extras to shopping lists, list items, and ingredient foods"""
|
|
|
|
backup_version_bcfdad6b7355_1 = CWD / "backups/backup-version-bcfdad6b7355-1.zip"
|
|
"""bcfdad6b7355: remove tool name and slug unique contraints"""
|
|
|
|
backup_version_ba1e4a6cfe99_1 = CWD / "backups/backup-version-ba1e4a6cfe99-1.zip"
|
|
"""ba1e4a6cfe99: added plural names and alias tables for foods and units"""
|
|
|
|
backup_version_09aba125b57a_1 = CWD / "backups/backup-version-09aba125b57a-1.zip"
|
|
"""09aba125b57a: add OIDC auth method (Safari-mangled ZIP structure)"""
|
|
|
|
backup_version_86054b40fd06_1 = CWD / "backups/backup-version-86054b40fd06-1.zip"
|
|
"""86054b40fd06: added query_filter_string to cookbook and mealplan"""
|
|
|
|
migrations_paprika = CWD / "migrations/paprika.zip"
|
|
|
|
migrations_chowdown = CWD / "migrations/chowdown.zip"
|
|
|
|
migrations_copymethat = CWD / "migrations/copymethat.zip"
|
|
|
|
migrations_mealie = CWD / "migrations/mealie.zip"
|
|
|
|
migrations_nextcloud = CWD / "migrations/nextcloud.zip"
|
|
|
|
migrations_tandoor = CWD / "migrations/tandoor.zip"
|
|
|
|
migrations_plantoeat = CWD / "migrations/plantoeat.zip"
|
|
|
|
migrations_myrecipebox = CWD / "migrations/myrecipebox.csv"
|
|
|
|
migrations_recipekeeper = CWD / "migrations/recipekeeper.zip"
|
|
|
|
images_test_image_1 = CWD / "images/test-image-1.jpg"
|
|
|
|
images_test_image_2 = CWD / "images/test-image-2.png"
|
|
|
|
html_mealie_recipe = CWD / "html/mealie-recipe.html"
|
|
|
|
html_sous_vide_smoked_beef_ribs = CWD / "html/sous-vide-smoked-beef-ribs.html"
|
|
|
|
html_sous_vide_shrimp = CWD / "html/sous-vide-shrimp.html"
|
|
|
|
html_jam_roly_poly_with_custard = CWD / "html/jam-roly-poly-with-custard.html"
|
|
|
|
html_nutty_umami_noodles_with_scallion_brown_butter_and_snow_peas_recipe = (
|
|
CWD / "html/nutty-umami-noodles-with-scallion-brown-butter-and-snow-peas-recipe.html"
|
|
)
|
|
|
|
html_taiwanese_three_cup_chicken_san_bei_gi_recipe = CWD / "html/taiwanese-three-cup-chicken-san-bei-gi-recipe.html"
|
|
|
|
html_detroit_style_pepperoni_pizza = CWD / "html/detroit-style-pepperoni-pizza.html"
|
|
|
|
html_carottes_rapps_with_rice_and_sunflower_seeds = CWD / "html/carottes-rapps-with-rice-and-sunflower-seeds.html"
|
|
|
|
html_schinken_kase_waffeln_ohne_viel_schnickschnack = CWD / "html/schinken-kase-waffeln-ohne-viel-schnickschnack.html"
|
|
|
|
html_healthy_pasta_bake_60759 = CWD / "html/healthy-pasta-bake-60759.html"
|
|
|
|
json_instant_pot_chicken_and_potatoes = CWD / "json/instant-pot-chicken-and-potatoes.json"
|
|
|
|
json_jalapeno_popper_dip = CWD / "json/jalapeno-popper-dip.json"
|
|
|
|
json_best_homemade_salsa_recipe = CWD / "json/best-homemade-salsa-recipe.json"
|
|
|
|
json_how_to_make_instant_pot_spaghetti = CWD / "json/how-to-make-instant-pot-spaghetti.json"
|
|
|
|
json_pizza_knoblauch_champignon_paprika_vegan_html = CWD / "json/pizza-knoblauch-champignon-paprika-vegan-html.json"
|
|
|
|
json_bon_appetit = CWD / "json/bon-appetit.json"
|
|
|
|
json_moroccan_skirt_steak_with_roasted_pepper_couscous = (
|
|
CWD / "json/moroccan-skirt-steak-with-roasted-pepper-couscous.json"
|
|
)
|
|
|
|
json_microwave_sweet_potatoes_04783 = CWD / "json/microwave-sweet-potatoes-04783.json"
|
|
|
|
json_dairy_free_impossible_pumpkin_pie = CWD / "json/dairy-free-impossible-pumpkin-pie.json"
|
|
|
|
json_chunky_apple_cake = CWD / "json/chunky-apple-cake.json"
|
|
|
|
json_blue_cheese_stuffed_turkey_meatballs_with_raspberry_balsamic_glaze_2 = (
|
|
CWD / "json/blue-cheese-stuffed-turkey-meatballs-with-raspberry-balsamic-glaze-2.json"
|
|
)
|
|
|
|
json_instant_pot_kerala_vegetable_stew = CWD / "json/instant-pot-kerala-vegetable-stew.json"
|