We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
make models
1 parent 8c2fac0 commit e7853a1Copy full SHA for e7853a1
1 file changed
Makefile
@@ -67,6 +67,9 @@ migrate: # Run migrations
67
seed: # Load seed data
68
poetry run ./manage.py loaddata clinics participants
69
70
+models:
71
+ poetry run ./manage.py shell -c "from django.apps import apps; print('\n'.join(f'{m._meta.app_label}.{m.__name__}' for m in apps.get_models()))"
72
+
73
_install-poetry:
74
if ! command -v poetry >/dev/null 2>&1; then \
75
pip install poetry; \
0 commit comments