mirror of
https://github.com/YunoHost-Apps/photonix_ynh.git
synced 2024-09-03 19:56:29 +02:00
Update to v0.16.0
This commit is contained in:
parent
01cedcc95d
commit
ea2587d992
8 changed files with 11 additions and 11 deletions
|
@ -11,7 +11,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
|
|||
## Overview
|
||||
Photonix is a photo management application that streamlines the process of storing, presenting and re-discovering photos. Smart filtering is made possible automatically by object and face recognition, location awareness, color analysis and other algorithms.
|
||||
|
||||
**Shipped version:** 0.11.0
|
||||
**Shipped version:** 0.16.0
|
||||
|
||||
## Screenshots
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ Si vous n'avez pas YunoHost, consultez [le guide](https://yunohost.org/#/install
|
|||
## Vue d'ensemble
|
||||
Photonix est une application de gestion de photos qui simplifie le processus de stocker, présenter er re-découvrir ses photos. Le filtrage intelligent est rendu possible automatiquement grâce à la reconnaissance d'objets et de visages, la localisation, l'analyse de couleurs, et d'autres algorithmes.
|
||||
|
||||
**Version incluse :** 0.11.0
|
||||
**Version incluse :** 0.16.0
|
||||
|
||||
## Captures d'écran
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
SOURCE_URL=https://github.com/photonixapp/photonix/archive/refs/tags/v0.11.0.tar.gz
|
||||
SOURCE_SUM=9c895cab72cc65a8443975b23d10de7bbcf923af9e8d60ca2d99b2892385ac97
|
||||
SOURCE_URL=https://github.com/photonixapp/photonix/archive/refs/tags/v0.16.0.tar.gz
|
||||
SOURCE_SUM=1ed5daf0ff27b9e7e09331e2ca3f5d057884f6f509671fb122731b36cde03cd5
|
||||
SOURCE_SUM_PRG=sha256sum
|
||||
SOURCE_FORMAT=tar.gz
|
||||
SOURCE_IN_SUBDIR=true
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
default_type text/html;
|
||||
|
||||
error_page 500 502 503 504 /500.html;
|
||||
|
||||
location /500.html {
|
||||
root __FINALPATH__/srv/ui/public;
|
||||
root __FINALPATH__/srv/ui/public/;
|
||||
}
|
||||
|
||||
location /photos {
|
||||
|
|
|
@ -4,6 +4,8 @@ POSTGRES_DB=__DB_NAME__
|
|||
POSTGRES_USER=__DB_NAME__
|
||||
POSTGRES_PASSWORD=__DB_PWD__
|
||||
REDIS_HOST=127.0.0.1
|
||||
REDIS_PORT=6379
|
||||
POSTGRES_PORT=5432
|
||||
ALLOWED_HOSTS='*'
|
||||
DEMO=0
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"en": "Photo management application that streamlines the process of storing, presenting and re-discovering photos",
|
||||
"fr": "Application de gestion de photos qui simplifie le processus de stocker, présenter er re-découvrir ses photos"
|
||||
},
|
||||
"version": "0.11.0~ynh1",
|
||||
"version": "0.16.0~ynh1",
|
||||
"url": "https://photonix.org/",
|
||||
"license": "AGPL-3.0-only",
|
||||
"maintainer": {
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#=================================================
|
||||
|
||||
# dependencies used by the app
|
||||
pkg_dependencies="acl python3 python3-pip python3-venv nodejs postgresql postgresql-contrib postgresql-common redis-server libsasl2-dev libldap2-dev libssl-dev build-essential curl gfortran gnupg libatlas-base-dev libblas-dev libblas3 libfreetype6 libfreetype6-dev libhdf5-dev libjpeg-dev liblapack-dev liblapack3 libpq-dev libtiff5-dev netcat libimage-exiftool-perl"
|
||||
pkg_dependencies="acl python3 python3-pip python3-venv nodejs postgresql postgresql-contrib postgresql-common redis-server libsasl2-dev libldap2-dev libssl-dev build-essential curl gfortran gnupg libatlas-base-dev libblas-dev libblas3 libfreetype6 libfreetype6-dev libhdf5-dev libheif-examples libjpeg-dev liblapack-dev liblapack3 libpq-dev libtiff5-dev netcat libimage-exiftool-perl"
|
||||
|
||||
#=================================================
|
||||
# PERSONAL HELPERS
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
diff --git a/photonix/web/settings.py b/photonix/web/settings.py
|
||||
index 8397662..5ebaa37 100644
|
||||
index 45ba924..96d6dd4 100644
|
||||
--- a/photonix/web/settings.py
|
||||
+++ b/photonix/web/settings.py
|
||||
@@ -16,6 +16,7 @@ from pathlib import Path
|
||||
|
@ -10,7 +10,7 @@ index 8397662..5ebaa37 100644
|
|||
|
||||
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
||||
BASE_DIR = str(Path(__file__).parent.parent.resolve())
|
||||
@@ -92,12 +93,17 @@ DATABASES = {
|
||||
@@ -133,12 +134,17 @@ LOGGING = {
|
||||
}
|
||||
|
||||
AUTHENTICATION_BACKENDS = [
|
||||
|
|
Loading…
Add table
Reference in a new issue