mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-22 14:49:40 +02:00
* new recipe summary route * add categories to cards * add pillow * show tags instead of categories * additional debug info * add todays meal image url * about page * fix reactive tag * changelog + docs * bump version Co-authored-by: hay-kot <hay-kot@pm.me>
15 lines
No EOL
280 B
Python
15 lines
No EOL
280 B
Python
from pathlib import Path
|
|
from fastapi_camelcase import CamelModel
|
|
|
|
|
|
class AppInfo(CamelModel):
|
|
production: bool
|
|
version: str
|
|
demo_status: bool
|
|
|
|
class DebugInfo(AppInfo):
|
|
api_port: int
|
|
api_docs: bool
|
|
db_type: str
|
|
sqlite_file: Path
|
|
default_group: str |