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

Merge pull request #37 from YunoHost-Apps/updates

Updates
This commit is contained in:
Jens Diemer 2020-12-22 18:56:07 +01:00 committed by GitHub
commit c8927ca221
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View file

@ -18,14 +18,13 @@ check-poetry:
install-poetry: ## install or update poetry install-poetry: ## install or update poetry
pip3 install -U poetry pip3 install -U poetry
install: check-poetry ## install PyInventory via poetry install: check-poetry ## install project via poetry
sudo apt install python3-ldap libldap2-dev libsasl2-dev
poetry install poetry install
update: install-poetry ## update the sources and installation update: install-poetry ## update the sources and installation
poetry update poetry update
local-test: check-poetry ## Run local_test.py to run pyinventory_ynh locally local-test: check-poetry ## Run local_test.py to run the project locally
poetry run ./local_test.py poetry run ./local_test.py
local-diff-settings: ## Run "manage.py diffsettings" with local test local-diff-settings: ## Run "manage.py diffsettings" with local test

View file

@ -170,7 +170,6 @@ LOGGING = {
'django': {'handlers': ['log_file', 'mail_admins'], 'level': 'INFO', 'propagate': False}, 'django': {'handlers': ['log_file', 'mail_admins'], 'level': 'INFO', 'propagate': False},
'axes': {'handlers': ['log_file', 'mail_admins'], 'level': 'WARNING', 'propagate': False}, 'axes': {'handlers': ['log_file', 'mail_admins'], 'level': 'WARNING', 'propagate': False},
'django_tools': {'handlers': ['log_file', 'mail_admins'], 'level': 'INFO', 'propagate': False}, 'django_tools': {'handlers': ['log_file', 'mail_admins'], 'level': 'INFO', 'propagate': False},
'django_auth_ldap': {'handlers': ['log_file', 'mail_admins'], 'level': 'DEBUG', 'propagate': False},
'inventory': {'handlers': ['log_file', 'mail_admins'], 'level': 'INFO', 'propagate': False}, 'inventory': {'handlers': ['log_file', 'mail_admins'], 'level': 'INFO', 'propagate': False},
}, },
} }