feat(build): introspecte le schéma de base de donnée de drupal

This commit is contained in:
François Poulain 2020-08-01 11:14:40 +02:00
parent f1e0ecf8f1
commit 65fef05364
2 changed files with 4 additions and 0 deletions

1
.gitignore vendored
View File

@ -34,6 +34,7 @@ sqlite.db
# Local configuration
config.env
drupal2spip_lal/drupal/models.py
# Local overrides and variable content
local/

View File

@ -119,6 +119,9 @@ ifeq ($(ENV), production)
$(PYTHON) manage.py collectstatic --no-input --verbosity 0
endif
inspectdb: ### introspecte le schéma de base de donnée
$(PYTHON) manage.py inspectdb --database=drupal > drupal2spip_lal/drupal/models.py
## Cibles liées à l'environnement virtuel
create-venv: $(PYTHON)