2022-11-19 19:56:01 +01:00
|
|
|
#### mealie
|
|
|
|
|
|
|
|
##### Information
|
|
|
|
Site : https://mealie.io/
|
|
|
|
|
|
|
|
Source : https://github.com/hay-kot/mealie
|
|
|
|
|
|
|
|
##### Install
|
|
|
|
|
2022-11-21 22:52:21 +01:00
|
|
|
Require debian 12 (bookworm)
|
2022-11-19 19:56:01 +01:00
|
|
|
```bash
|
|
|
|
apt install -y wget ca-certificates
|
|
|
|
wget -qO - https://deb.lgy.fr/install.sh | bash
|
2022-11-21 22:52:21 +01:00
|
|
|
wget -qO - https://deb.nodesource.com/setup_16.x| bash
|
|
|
|
echo -e "Package: nodejs\\nPin: version 16.*\\nPin-Priority: 1000" > /etc/apt/preferences.d/nodejs
|
2022-11-19 19:56:01 +01:00
|
|
|
apt-get update
|
2022-11-21 22:52:21 +01:00
|
|
|
|
|
|
|
|
|
|
|
apt-get install -y mealie-frontend mealie-api
|
2022-11-19 19:56:01 +01:00
|
|
|
|
|
|
|
#Edit /etc/default/mealie-api and /etc/default/mealie-frontend
|
|
|
|
|
|
|
|
systemctl enable --now mealie-api mealie-frontend
|
|
|
|
```
|