Merge pull request #110 from meienberger/ArneNaessens-app/mealie
[APP] Mealie
This commit is contained in:
commit
388ee542af
3 changed files with 36 additions and 0 deletions
12
apps/mealie/config.json
Normal file
12
apps/mealie/config.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"name": "Mealie",
|
||||
"port": 8114,
|
||||
"available": true,
|
||||
"id": "mealie",
|
||||
"description": "Mealie is a self-hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family. Easily add recipes into your database by providing the url and Mealie will automatically import the relevant data or add a family recipe with the UI editor. Mealie also provides an API for interactions from 3rd party applications. Default username / password is changeme@email.com / MyPassword",
|
||||
"short_desc": "Mealie is a self-hosted recipe manager and meal planner.",
|
||||
"author": "hay-kot",
|
||||
"source": "https://github.com/hay-kot/mealie",
|
||||
"image": "https://raw.githubusercontent.com/hay-kot/mealie/mealie-next/frontend/static/icons/android-chrome-512x512.png",
|
||||
"form_fields": {}
|
||||
}
|
15
apps/mealie/docker-compose.yml
Normal file
15
apps/mealie/docker-compose.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
version: "3.7"
|
||||
services:
|
||||
mealie:
|
||||
container_name: mealie
|
||||
image: hkotel/mealie:v0.5.6
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- ${APP_PORT}:80
|
||||
environment:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
volumes:
|
||||
- ${APP_DATA_DIR}/data:/app/data
|
||||
networks:
|
||||
- tipi_main_network
|
9
apps/mealie/metadata/description.md
Normal file
9
apps/mealie/metadata/description.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
## Mealie is a self-hosted recipe manager and meal planner.
|
||||
|
||||
- **username**: changeme@email.com
|
||||
- **password**: MyPassword
|
||||
<br />
|
||||
|
||||
Mealie is a self hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family. Easily add recipes into your database by providing the url and Mealie will automatically import the relevant data or add a family recipe with the UI editor. Mealie also provides an API for interactions from 3rd party applications.
|
||||
|
||||
[![Product Name Screen Shot](https://raw.githubusercontent.com/hay-kot/mealie/mealie-next/docs/docs/assets/img/home_screenshot.png)](https://docs.mealie.io/)
|
Loading…
Reference in a new issue