mirror of
https://github.com/YunoHost-Apps/django-for-runners_ynh.git
synced 2024-09-03 18:26:16 +02:00
commit
e5df352554
7 changed files with 10 additions and 6 deletions
|
@ -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
|
||||
```
|
||||
|
||||
|
|
|
@ -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
|
||||
```
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
|
|
|
@ -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/<slug:user_name>/<path:path>', 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
|
||||
|
|
|
@ -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
|
||||
```
|
||||
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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 <git@jensdiemer.de>"]
|
||||
homepage = "https://github.com/YunoHost-Apps/django-for-runners_ynh"
|
||||
|
|
Loading…
Reference in a new issue