mirror of
https://github.com/YunoHost-Apps/tandoor_ynh.git
synced 2024-09-03 20:35:56 +02:00
commit
a2cc118679
6 changed files with 9 additions and 13 deletions
|
@ -44,7 +44,7 @@ a public page.
|
||||||
- 📥️ **Import your collection** from many other [recipe managers](https://docs.tandoor.dev/features/import_export/)
|
- 📥️ **Import your collection** from many other [recipe managers](https://docs.tandoor.dev/features/import_export/)
|
||||||
- ➕ Many more like recipe scaling, image compression, printing views and supermarkets
|
- ➕ Many more like recipe scaling, image compression, printing views and supermarkets
|
||||||
|
|
||||||
**Shipped version:** 1.3.3~ynh1
|
**Shipped version:** 1.3.3~ynh2
|
||||||
|
|
||||||
|
|
||||||
**Demo:** https://app.tandoor.dev/accounts/login/?demo
|
**Demo:** https://app.tandoor.dev/accounts/login/?demo
|
||||||
|
|
|
@ -44,7 +44,7 @@ a public page.
|
||||||
- 📥️ **Import your collection** from many other [recipe managers](https://docs.tandoor.dev/features/import_export/)
|
- 📥️ **Import your collection** from many other [recipe managers](https://docs.tandoor.dev/features/import_export/)
|
||||||
- ➕ Many more like recipe scaling, image compression, printing views and supermarkets
|
- ➕ Many more like recipe scaling, image compression, printing views and supermarkets
|
||||||
|
|
||||||
**Version incluse :** 1.3.3~ynh1
|
**Version incluse :** 1.3.3~ynh2
|
||||||
|
|
||||||
|
|
||||||
**Démo :** https://app.tandoor.dev/accounts/login/?demo
|
**Démo :** https://app.tandoor.dev/accounts/login/?demo
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# only set this to true when testing/debugging
|
# only set this to true when testing/debugging
|
||||||
# when unset: 1 (true) - dont unset this, just for development
|
# when unset: 1 (true) - dont unset this, just for development
|
||||||
DEBUG=0
|
DEBUG=1
|
||||||
SQL_DEBUG=0
|
SQL_DEBUG=1
|
||||||
|
|
||||||
# HTTP port to bind to
|
# HTTP port to bind to
|
||||||
TANDOOR_PORT=__PORT__
|
TANDOOR_PORT=__PORT__
|
||||||
|
|
|
@ -10,15 +10,11 @@ location / {
|
||||||
proxy_set_header X-Forwarded-Host $server_name;
|
proxy_set_header X-Forwarded-Host $server_name;
|
||||||
|
|
||||||
# Include SSOWAT user panel.
|
# Include SSOWAT user panel.
|
||||||
include conf.d/yunohost_panel.conf.inc;
|
# include conf.d/yunohost_panel.conf.inc;
|
||||||
}
|
|
||||||
|
|
||||||
location /static/ {
|
|
||||||
alias __FINALPATH__/staticfiles/;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
location /media/ {
|
location /media/ {
|
||||||
alias __DATADIR__/;
|
alias __FINALPATH__/mediafiles/;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"en": "Application for managing recipes, planning meals, building shopping lists and much much more!",
|
"en": "Application for managing recipes, planning meals, building shopping lists and much much more!",
|
||||||
"fr": "Expliquez en *quelques* (10~15) mots l'utilité de l'app ou ce qu'elle fait (l'objectif est de donner une idée grossière pour des utilisateurs qui naviguent dans un catalogue de 100+ apps)"
|
"fr": "Expliquez en *quelques* (10~15) mots l'utilité de l'app ou ce qu'elle fait (l'objectif est de donner une idée grossière pour des utilisateurs qui naviguent dans un catalogue de 100+ apps)"
|
||||||
},
|
},
|
||||||
"version": "1.3.3~ynh1",
|
"version": "1.3.3~ynh2",
|
||||||
"url": "https://tandoor.dev",
|
"url": "https://tandoor.dev",
|
||||||
"upstream": {
|
"upstream": {
|
||||||
"license": "AGPL-3.0-or-later",
|
"license": "AGPL-3.0-or-later",
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
"userdoc": "https://docs.tandoor.dev",
|
"userdoc": "https://docs.tandoor.dev",
|
||||||
"code": "https://github.com/TandoorRecipes/recipes"
|
"code": "https://github.com/TandoorRecipes/recipes"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "AGPL-3.0-or-later",
|
||||||
"maintainer": {
|
"maintainer": {
|
||||||
"name": "Navan Chauhan",
|
"name": "Navan Chauhan",
|
||||||
"email": "tandoor@navan.email"
|
"email": "tandoor@navan.email"
|
||||||
|
|
|
@ -73,7 +73,7 @@ then
|
||||||
ynh_script_progression --message="Upgrading source files..." --weight=1
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
||||||
|
|
||||||
# Download, check integrity, uncompress and patch the source from app.src
|
# Download, check integrity, uncompress and patch the source from app.src
|
||||||
ynh_setup_source --dest_dir="$final_path" --keep="$final_path/venv"
|
ynh_setup_source --dest_dir="$final_path" --keep="venv mediafiles"
|
||||||
|
|
||||||
chmod 750 "$final_path"
|
chmod 750 "$final_path"
|
||||||
chmod -R o-rwx "$final_path"
|
chmod -R o-rwx "$final_path"
|
||||||
|
|
Loading…
Add table
Reference in a new issue