diff --git a/README.md b/README.md index 3da9e0d..2a0ce1b 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ This package for YunoHost used [django-yunohost-integration](https://github.com/ More screenshots are here: [jedie.github.io/tree/master/screenshots/django-for-runners](https://github.com/jedie/jedie.github.io/tree/master/screenshots/django-for-runners/README.creole) -**Shipped version:** 0.17.3~ynh1 +**Shipped version:** 0.17.3~ynh2 ## Screenshots @@ -168,6 +168,7 @@ root@yunohost:~# tail -f /var/log/django-for-runners/django-for-runners.log root@yunohost:~# cat /etc/systemd/system/django-for-runners.service root@yunohost:~# systemctl reload-or-restart django-for-runners +root@yunohost:~# systemctl status django-for-runners root@yunohost:~# journalctl --unit=for_runners --follow ``` diff --git a/README_fr.md b/README_fr.md index 340c5b8..9b5bc86 100644 --- a/README_fr.md +++ b/README_fr.md @@ -34,7 +34,7 @@ This package for YunoHost used [django-yunohost-integration](https://github.com/ More screenshots are here: [jedie.github.io/tree/master/screenshots/django-for-runners](https://github.com/jedie/jedie.github.io/tree/master/screenshots/django-for-runners/README.creole) -**Version incluse :** 0.17.3~ynh1 +**Version incluse :** 0.17.3~ynh2 ## Captures d’écran @@ -168,6 +168,7 @@ root@yunohost:~# tail -f /var/log/django-for-runners/django-for-runners.log root@yunohost:~# cat /etc/systemd/system/django-for-runners.service root@yunohost:~# systemctl reload-or-restart django-for-runners +root@yunohost:~# systemctl status django-for-runners root@yunohost:~# journalctl --unit=for_runners --follow ``` diff --git a/conf/settings.py b/conf/settings.py index efcdcf3..5dd8ea9 100644 --- a/conf/settings.py +++ b/conf/settings.py @@ -159,9 +159,10 @@ LOGGING['handlers']['log_file']['filename'] = str(LOG_FILE) # Example how to add logging to own app: LOGGING['loggers']['for_runners'] = { 'handlers': ['syslog', 'log_file', 'mail_admins'], - 'level': 'INFO', 'propagate': False, } +for __logger_name in LOGGING['loggers'].keys(): + LOGGING['loggers'][__logger_name]['level'] = 'DEBUG' if DEBUG else LOG_LEVEL # ----------------------------------------------------------------------------- diff --git a/conf/urls.py b/conf/urls.py index a0d3dae..8ab031b 100644 --- a/conf/urls.py +++ b/conf/urls.py @@ -9,10 +9,10 @@ if settings.PATH_URL: # settings.PATH_URL is the $YNH_APP_ARG_PATH # Prefix all urls with "PATH_URL": urlpatterns = [ - path(f'{settings.PATH_URL}/', admin.site.urls), path(f'{settings.PATH_URL}/media//', UserMediaView.as_view()), # TODO: https://github.com/jedie/django-for-runners/issues/25 # path(settings.MEDIA_URL.lstrip('/'), include('django_tools.serve_media_app.urls')), + path(f'{settings.PATH_URL}/', admin.site.urls), ] else: # Installed to domain root, without a path prefix diff --git a/doc/DISCLAIMER.md b/doc/DISCLAIMER.md index 37384f3..8b2ab88 100644 --- a/doc/DISCLAIMER.md +++ b/doc/DISCLAIMER.md @@ -122,6 +122,7 @@ root@yunohost:~# tail -f /var/log/django-for-runners/django-for-runners.log root@yunohost:~# cat /etc/systemd/system/django-for-runners.service root@yunohost:~# systemctl reload-or-restart django-for-runners +root@yunohost:~# systemctl status django-for-runners root@yunohost:~# journalctl --unit=for_runners --follow ``` diff --git a/manifest.json b/manifest.json index 49de205..c7088ea 100644 --- a/manifest.json +++ b/manifest.json @@ -5,7 +5,7 @@ "description": { "en": "Store your GPX tracks of your running (or other sports activity)" }, - "version": "0.17.3~ynh1", + "version": "0.17.3~ynh2", "url": "https://github.com/jedie/django-for-runners", "upstream": { "license": "GPL-3.0", diff --git a/pyproject.toml b/pyproject.toml index 8ab1dfd..3b89557 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "for_runners_ynh" -version = "0.17.3+ynh1" +version = "0.17.3+ynh2" description = "YunoHost app package for https://github.com/jedie/django-for-runners" authors = ["Jens Diemer "] homepage = "https://github.com/YunoHost-Apps/django-for-runners_ynh"