1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/scovie_ynh.git synced 2024-09-03 20:16:29 +02:00

Merge pull request #9 from YunoHost-Apps/testing

Testing
This commit is contained in:
eric_G 2023-11-18 18:30:13 +01:00 committed by GitHub
commit 4503ca46c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 15 additions and 5 deletions

View file

@ -19,7 +19,12 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
[Scovie](https://github.com/eldertek/scovie) is an open-source digital signage system for high schools, built using Python and Django. It provides an easy-to-use interface for administrators to upload and manage multimedia content, which is then displayed on screens throughout the school.
**Shipped version:** 0.0.6~ynh1
**Shipped version:** 0.0.6~ynh2
## Screenshots
![Screenshot of Scovie](./doc/screenshots/all.png)
## Disclaimers / important information
## Links

View file

@ -19,7 +19,12 @@ Si vous navez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
[Scovie](https://github.com/eldertek/scovie) is an open-source digital signage system for high schools, built using Python and Django. It provides an easy-to-use interface for administrators to upload and manage multimedia content, which is then displayed on screens throughout the school.
**Version incluse :** 0.0.6~ynh1
**Version incluse :** 0.0.6~ynh2
## Captures décran
![Capture décran de Scovie](./doc/screenshots/all.png)
## Avertissements / informations importantes
## Links

BIN
doc/screenshots/all.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

View file

@ -6,7 +6,7 @@
"en": "Digital signage system for high schools",
"fr": "Affichage dynamique open-source pour les lycées"
},
"version": "0.0.6~ynh1",
"version": "0.0.6~ynh2",
"url": "https://github.com/eldertek/scovie",
"upstream": {
"license": "GPL-3.0",

View file

@ -20,10 +20,10 @@ ynh_abort_if_errors
ynh_script_progression --message="Validating installation parameters..."
# Path for e.g. "static" files, served by nginx:
# test ! -e "$public_path" || ynh_die --message="This path already contains a folder"
test ! -e "$public_path" || ynh_die --message="This path already contains a folder"
# Path for own config files, e.g.: Django's settings.py:
# test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
# Register (book) web path
ynh_webpath_register --app="$app" --domain="$domain" --path_url="$path_url"