2022-09-13 21:08:58 +02:00
|
|
|
## Settings and upgrades
|
|
|
|
|
|
|
|
Almost everything related to PyInventory's configuration is handled in a `"../conf/settings.py"` file.
|
2023-08-22 19:52:36 +02:00
|
|
|
You can edit the file `/home/yunohost.app/django_example/local_settings.py` to enable or disable features.
|
2022-09-13 21:08:58 +02:00
|
|
|
|
2023-08-22 19:52:36 +02:00
|
|
|
Test sending emails, e.g.:
|
2022-09-13 21:08:58 +02:00
|
|
|
|
|
|
|
```bash
|
|
|
|
ssh admin@yourdomain.tld
|
2023-08-22 19:52:36 +02:00
|
|
|
root@yunohost:~# /home/yunohost.app/pyinventory/manage.py sendtestemail --admins
|
2022-09-13 21:08:58 +02:00
|
|
|
```
|
|
|
|
|
2023-08-22 19:52:36 +02:00
|
|
|
How to debug a django YunoHost app, take a look into:
|
2022-09-13 21:08:58 +02:00
|
|
|
|
2023-08-22 19:52:36 +02:00
|
|
|
* https://github.com/YunoHost-Apps/django_example_ynh#developer-info
|