At a minimum something like this:
install: up build
ddev exec php craft setup/app-id \
$(filter-out $@,$(MAKECMDGOALS))
ddev exec php craft setup/security-key \
$(filter-out $@,$(MAKECMDGOALS))
ddev import-db --src=seed.sql
ddev exec php craft up
But it might be cool to modify install to accept a flag? e.g. install --seed=snapshot.sql
At a minimum something like this:
But it might be cool to modify
installto accept a flag? e.g.install --seed=snapshot.sql