1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-24 15:49:42 +02:00
mealie/dev/dev-notes.md
2021-01-03 14:25:38 -09:00

2.6 KiB

Getting A Developer Instance Started

For the best experience developing I recommend using docker. I've used both WSL2 and Ubuntu to develop mealie and have had no issues with cross compatibility with docker. 2 Scripts are available along ith docker-compose files to make development instances easier. After cloning the repo you can set the scripts in /dev/scripts/ as executable and then use VSCode tasks to execute the scripts or execute them from the CLI.

docker-compose.dev.sh Will spin up a development stack with hot-reloading enabled. docker-compose.sh Will spin up a production version of the stack.

After the stack is running navigate to the admin page localhost:9090/settings/site. On the Backups and Exports section import the backup labeled dev_sample_data_{DATE}.zip. This will give you some recipe data to work with.

Once you're up and running you should be able to make changes and see them reflected on the frontend/backend. If you're not sure what to work on you can check:

Working Todos

Frontend

  • .Vue file reorganized into something that makes sense
  • Recipe Print Page
  • Catch 400 / bad response on create from URL
  • Recipe Editor Data Validation CLient Side
  • Favicon
  • Rename Window
  • Add version indicator and notification for new version available
  • Enhanced Search Functionality
  • Organize Home Page my Category, ideally user selectable.

Backend

  • Add Debug folder for writing the last pulled recipe data to.
  • Recipe Editor Data Validation Server Side
  • Normalize Recipe data on scrape
  • Support how to Sections
  • Export Markdown on Auto backups
  • Recipe request by category/tags
  • Add Additional Migrations, See mealie/services/migrations/chowdown.py for examples of how to do this.

Draft Changelog

v0.0.1

General

  • Fixed opacity issues with marked steps - mtoohey31
  • Updated Favicon
  • Renamed Frontend Window
  • Added Debug folder to dump scraper data prior to processing.

Recipes

  • Added user feedback on bad URL. Now when
  • Better backend data validation for updating recipes, avoid small syntax errors corrupting database entry. Issue #8
  • Fixed spacing issue while editing new recipes in JSON