mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-05 21:45:25 +02:00
Feature/group based notifications (#918)
* fix group page * setup group notification for backend * update type generators * script to auto-generate schema exports * setup frontend CRUD interface * remove old notifications UI * drop old events api * add test functionality * update naming for fields * add event dispatcher functionality * bump to python 3.10 * bump python version * purge old event code * use-async apprise * set mealie logo as image * unify styles for buttons rows * add links to banners
This commit is contained in:
parent
50a341ed3f
commit
190773c5d7
74 changed files with 1992 additions and 1229 deletions
8
makefile
8
makefile
|
@ -60,8 +60,6 @@ lint: ## 🧺 Format, Check and Flake8
|
|||
poetry run flake8 mealie tests
|
||||
|
||||
|
||||
lint-frontend: ## 🧺 Run yarn lint
|
||||
cd frontend && yarn lint
|
||||
|
||||
coverage: ## ☂️ Check code coverage quickly with the default Python
|
||||
poetry run pytest
|
||||
|
@ -95,6 +93,12 @@ frontend: ## 🎬 Start Mealie Frontend Development Server
|
|||
frontend-build: ## 🏗 Build Frontend in frontend/dist
|
||||
cd frontend && yarn run build
|
||||
|
||||
frontend-generate: ## 🏗 Generate Code for Frontend
|
||||
poetry run python dev/code-generation/gen_frontend_types.py
|
||||
|
||||
frontend-lint: ## 🧺 Run yarn lint
|
||||
cd frontend && yarn lint
|
||||
|
||||
.PHONY: docs
|
||||
docs: ## 📄 Start Mkdocs Development Server
|
||||
poetry run python dev/scripts/api_docs_gen.py && \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue