Find a file
2021-11-22 23:17:51 +01:00
.github Update and fixes 2021-10-10 16:19:47 +02:00
conf update to django-for-runners v0.12.1 2021-11-22 23:17:51 +01:00
scripts remove not needed "--upgrade" 2021-11-22 23:17:51 +01:00
tests Update and fixes 2021-10-10 16:19:47 +02:00
.editorconfig Activate tests 2021-10-10 14:38:40 +02:00
.flake8 update prohject setup 2021-01-17 11:32:28 +01:00
.gitignore update prohject setup 2021-01-17 11:32:28 +01:00
check_process init 2020-12-12 19:38:58 +01:00
LICENSE init 2020-12-12 19:38:58 +01:00
local_test.py Update and fixes 2021-10-10 16:19:47 +02:00
Makefile update prohject setup 2021-01-17 11:32:28 +01:00
manifest.json update to django-for-runners v0.12.1 2021-11-22 23:17:51 +01:00
poetry.lock update to django-for-runners v0.12.1 2021-11-22 23:17:51 +01:00
pyproject.toml update to django-for-runners v0.12.1 2021-11-22 23:17:51 +01:00
README.md Update and fixes 2021-10-10 16:19:47 +02:00
run_pytest.py Update and fixes 2021-10-10 16:19:47 +02:00
test_requirements.sh Add test script for venv creation 2021-11-22 23:17:51 +01:00

django-for-runners for YunoHost

Integration level CI Pipeline Maintain status

Build Status on github .github/workflows/package_linter.yml Coverage Status on codecov.io

Install django-for-runners with YunoHost

This package allows you to install django-for-runners quickly and simply on a YunoHost server. If you don't have YunoHost, please consult the guide to learn how to install it.

Pull requests welcome ;)

Overview

Logo

django-for-runners is a libre web-based management for your GPX tracks of your running (or other sports activity). Used Python/Django.

This package for YunoHost used django-yunohost-integration

Screenshots

More screenshots are here: jedie.github.io/tree/master/screenshots/django-for-runners


v0.6.0 2018-07-31 GPX Track


v0.4.0 2018-6-26 GPX info.png


v0.6.0 2018-07-19 Event Costs


More screenshots are here: jedie.github.io/tree/master/screenshots/django-for-runners

Settings and upgrades

Almost everything related to django-for-runners's configuration is handled in a "../conf/settings.py" file. You can edit the file /opt/yunohost/django-for-runners/local_settings.py to enable or disable features.

Test sending emails:

ssh admin@yourdomain.tld
root@yunohost:~# cd /opt/yunohost/django-for-runners/
root@yunohost:/opt/yunohost/django-for-runners# source venv/bin/activate
(venv) root@yunohost:/opt/yunohost/django-for-runners# ./manage.py sendtestemail --admins

Background info: Error mails are send to all settings.ADMINS. By default the YunoHost admin is inserted here. To check current ADMINS run:

(venv) root@yunohost:/opt/yunohost/django-for-runners# ./manage.py sendtestemail --admins

If you prefere to send error emails to a extrnal email address, just do something like this:

echo "ADMINS = (('Your Name', 'example@domain.tld'),)" >> /opt/yunohost/django-for-runners/local_settings.py

To check the effective settings, run this:

(venv) root@yunohost:/opt/yunohost/django-for-runners# ./manage.py diffsettings

Miscellaneous

SSO authentication

SSOwat is fully supported via django_ynh:

  • First user ($YNH_APP_ARG_ADMIN) will be created as Django's super user
  • All new users will be created as normal users
  • Login via SSO is fully supported
  • User Email, First / Last name will be updated from SSO data

Developer info

package installation / debugging

Please send your pull request to https://github.com/YunoHost-Apps/django-for-runners_ynh

Try 'main' branch, e.g.:

sudo yunohost app install https://github.com/YunoHost-Apps/django-for-runners_ynh/tree/master --debug
or
sudo yunohost app upgrade django-for-runners -u https://github.com/YunoHost-Apps/django-for-runners_ynh/tree/master --debug

Try 'testing' branch, e.g.:

sudo yunohost app install https://github.com/YunoHost-Apps/django-for-runners_ynh/tree/testing --debug
or
sudo yunohost app upgrade django-for-runners -u https://github.com/YunoHost-Apps/django-for-runners_ynh/tree/testing --debug

To remove call e.g.:

sudo yunohost app remove django-for-runners

Backup / remove / restore cycle, e.g.:

yunohost backup create --apps django-for-runners
yunohost backup list
archives:
  - django-for-runners-pre-upgrade1
  - 20201223-163434
yunohost app remove django-for-runners
yunohost backup restore 20201223-163434 --apps django-for-runners

Debug installation, e.g.:

root@yunohost:~# ls -la /var/www/django-for-runners/
total 18
drwxr-xr-x 4 root root 4 Dec  8 08:36 .
drwxr-xr-x 6 root root 6 Dec  8 08:36 ..
drwxr-xr-x 2 root root 2 Dec  8 08:36 media
drwxr-xr-x 7 root root 8 Dec  8 08:40 static

root@yunohost:~# ls -la /opt/yunohost/django-for-runners/
total 58
drwxr-xr-x 5 django-for-runners django-for-runners   11 Dec  8 08:39 .
drwxr-xr-x 3 root        root           3 Dec  8 08:36 ..
-rw-r--r-- 1 django-for-runners django-for-runners  460 Dec  8 08:39 gunicorn.conf.py
-rw-r--r-- 1 django-for-runners django-for-runners    0 Dec  8 08:39 local_settings.py
-rwxr-xr-x 1 django-for-runners django-for-runners  274 Dec  8 08:39 manage.py
-rw-r--r-- 1 django-for-runners django-for-runners  171 Dec  8 08:39 secret.txt
drwxr-xr-x 6 django-for-runners django-for-runners    6 Dec  8 08:37 venv
-rw-r--r-- 1 django-for-runners django-for-runners  115 Dec  8 08:39 wsgi.py
-rw-r--r-- 1 django-for-runners django-for-runners 4737 Dec  8 08:39 settings.py

root@yunohost:~# cd /opt/yunohost/django-for-runners/
root@yunohost:/opt/yunohost/django-for-runners# source venv/bin/activate
(venv) root@yunohost:/opt/yunohost/django-for-runners# ./manage.py check
django-for-runners v0.8.2 (Django v2.2.17)
DJANGO_SETTINGS_MODULE='settings'
PROJECT_PATH:/opt/yunohost/django-for-runners/venv/lib/python3.7/site-packages
BASE_PATH:/opt/yunohost/django-for-runners
System check identified no issues (0 silenced).

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:~# journalctl --unit=for_runners --follow

local test

For quicker developing of django-for-runners in the context of YunoHost app, it's possible to run the Django developer server with the settings and urls made for YunoHost installation.

e.g.:

~$ git clone https://github.com/YunoHost-Apps/django-for-runners_ynh.git
~$ cd django-for-runners_ynh/
~/django-for-runners_ynh$ make
install-poetry         install or update poetry
install                install django-for-runners via poetry
update                 update the sources and installation
local-test             Run local_test.py to run django-for-runners_ynh locally
~/django-for-runners_ynh$ make install-poetry
~/django-for-runners_ynh$ make install
~/django-for-runners_ynh$ make local-test

Notes:

  • SQlite database will be used
  • A super user with username test and password test is created
  • The page is available under http://127.0.0.1:8000/app_path/