mirror of
https://github.com/YunoHost-Apps/immich_ynh.git
synced 2024-09-03 20:36:24 +02:00
Add country boundaries file
This commit is contained in:
parent
914dc5beeb
commit
6445a86d8e
2 changed files with 4 additions and 1 deletions
|
@ -7,7 +7,7 @@ name = "Immich"
|
||||||
description.en = "Photo and video backup solution directly from your mobile phone"
|
description.en = "Photo and video backup solution directly from your mobile phone"
|
||||||
description.fr = "Sauvegarde de photos et de vidéos directement depuis votre mobile"
|
description.fr = "Sauvegarde de photos et de vidéos directement depuis votre mobile"
|
||||||
|
|
||||||
version = "1.109.2~ynh1"
|
version = "1.109.2~ynh2"
|
||||||
|
|
||||||
maintainers = ["ewilly"]
|
maintainers = ["ewilly"]
|
||||||
|
|
||||||
|
|
|
@ -120,6 +120,7 @@ myynh_install_python() {
|
||||||
# Install immich
|
# Install immich
|
||||||
myynh_install_immich() {
|
myynh_install_immich() {
|
||||||
# Thanks to https://github.com/arter97/immich-native
|
# Thanks to https://github.com/arter97/immich-native
|
||||||
|
# Check https://github.com/immich-app/base-images/blob/main/server/Dockerfile for changes
|
||||||
|
|
||||||
ynh_use_nodejs
|
ynh_use_nodejs
|
||||||
|
|
||||||
|
@ -207,11 +208,13 @@ myynh_install_immich() {
|
||||||
curl -LO "https://download.geonames.org/export/dump/cities500.zip" 2>&1
|
curl -LO "https://download.geonames.org/export/dump/cities500.zip" 2>&1
|
||||||
curl -LO "https://download.geonames.org/export/dump/admin1CodesASCII.txt" 2>&1
|
curl -LO "https://download.geonames.org/export/dump/admin1CodesASCII.txt" 2>&1
|
||||||
curl -LO "https://download.geonames.org/export/dump/admin2Codes.txt" 2>&1
|
curl -LO "https://download.geonames.org/export/dump/admin2Codes.txt" 2>&1
|
||||||
|
curl -LO "https://raw.githubusercontent.com/nvkelso/natural-earth-vector/v5.1.2/geojson/ne_10m_admin_0_countries.geojson" 2>&1
|
||||||
unzip "cities500.zip"
|
unzip "cities500.zip"
|
||||||
mkdir -p "$install_dir/app/geodata/"
|
mkdir -p "$install_dir/app/geodata/"
|
||||||
cp -a "$source_dir/geonames/cities500.txt" "$install_dir/app/geodata/"
|
cp -a "$source_dir/geonames/cities500.txt" "$install_dir/app/geodata/"
|
||||||
cp -a "$source_dir/geonames/admin1CodesASCII.txt" "$install_dir/app/geodata/"
|
cp -a "$source_dir/geonames/admin1CodesASCII.txt" "$install_dir/app/geodata/"
|
||||||
cp -a "$source_dir/geonames/admin2Codes.txt" "$install_dir/app/geodata/"
|
cp -a "$source_dir/geonames/admin2Codes.txt" "$install_dir/app/geodata/"
|
||||||
|
cp -a "$source_dir/geonames/ne_10m_admin_0_countries.geojson" "$install_dir/app/geodata/"
|
||||||
date --iso-8601=seconds | tr -d "\n" > "$install_dir/app/geodata/geodata-date.txt"
|
date --iso-8601=seconds | tr -d "\n" > "$install_dir/app/geodata/geodata-date.txt"
|
||||||
|
|
||||||
# Install sharp
|
# Install sharp
|
||||||
|
|
Loading…
Reference in a new issue