1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ulogger_ynh.git synced 2024-10-01 13:34:45 +02:00

Merge pull request #16 from memo-567/patch-3

Upgrade to version 1.1
This commit is contained in:
Éric Gaspar 2022-07-15 17:07:00 +02:00 committed by GitHub
commit 22a9c7420a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 32 additions and 7 deletions

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://github.com/bfabiszewski/ulogger-server/archive/v1.0.zip
SOURCE_SUM=aac2f69f64477b3a1c4265d19603fa32d9ba385f3e00358c0a4f08e7dcbb2020
SOURCE_URL=https://github.com/bfabiszewski/ulogger-server/archive/v1.1.zip
SOURCE_SUM=558B83214EF8DD04DEBF826D5330367D478EBD360A6DFD3C8328CDED07C0E1A9
SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=zip
SOURCE_IN_SUBDIR=true

4
doc/DESCRIPTION.md Normal file
View file

@ -0,0 +1,4 @@
**μlogger** is a web application for real-time collection of geolocation data, tracks viewing and management.
Together with a dedicated [μlogger mobile client](https://github.com/bfabiszewski/ulogger-android
) it may be used as a complete self hosted serverclient solution for logging and monitoring users' geolocation.

9
doc/DISCLAIMER.md Normal file
View file

@ -0,0 +1,9 @@
## Configuration
### Login
**Name:** The user selected during installation
**Password:** Will be emailed to you immediately after installation
### How to configure this app:
From an admin panel, or a plain file with SSH.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

View file

@ -6,15 +6,20 @@
"en": "Real-time collection of geolocation data, tracks viewing and management.",
"fr": "Géolocalisation en temps réel, gestion et affichage de traces."
},
"version": "1.0~ynh1",
"version": "1.1~ynh1",
"url": "https://github.com/bfabiszewski/ulogger-server",
"upstream": {
"license": "AGPL-3.0",
"website": "https://github.com/bfabiszewski/ulogger-server",
"code": "https://github.com/bfabiszewski/ulogger-server"
},
"license": "AGPL-3.0-only",
"maintainer": {
"name": "Anmol Sharma",
"email": "anmol@datamol.org"
},
"requirements": {
"yunohost": ">= 4.1.7"
"yunohost": ">= 4.3.0"
},
"multi_instance": true,
"services": [
@ -26,8 +31,7 @@
"install" : [
{
"name": "domain",
"type": "domain",
"example": "example.com"
"type": "domain"
},
{
"name": "path",
@ -43,7 +47,11 @@
{
"name": "is_public",
"type": "boolean",
"default": true
"help": {
"en": "If enabled, ulogger will be accessible by people who do not have an account. This can be changed later via the webadmin.",
"fr": "Si cette case est cochée, ulogger sera accessible aux personnes nayant pas de compte. Vous pourrez changer ceci plus tard via la webadmin."
},
"default": true
},
{
"name": "language",

View file

@ -157,6 +157,10 @@ ynh_store_file_checksum "$final_path/config.php"
# Set permissions to app files
chown -R $app: $final_path
chmod 755 -R $final_path
chmod -R o-rwx $final_path
chown -R $app:www-data $final_path
#=================================================
# SETUP SSOWAT
#=================================================