-
Notifications
You must be signed in to change notification settings - Fork 331
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add additional shortcuts to the Makefile #2208
Comments
@skks1212 I think so the following code, covers the changes you suggested. Commands like migrate, shell_plus & dbshell are covered under wildcard command.
|
@dhruv-goyal-10 would flags and additional data be passed down? For example |
@skks1212 Yep, it will be passed down if the entire command is passed as string. In your case, |
@dhruv-goyal-10 Thats nice, should I assign you to this issue? |
@skks1212 Yep, you can assign me this issue. |
Is your feature request related to a problem? Please describe.
Currently the
Makefile
only contains a limited number of commands. Commands likemake migrate
that are essential while development are not present.Describe the solution you'd like
If possible, a wildcard (*) command that would run
docker compose exec backend bash -c "python manage.py *"
Other complex commands like
make test
andmake test-coverage
can be kept the same as removing them for wildcards does not make sense.Additional
shell_plus
,db_shell
, andreset_test_db
and commandsThe text was updated successfully, but these errors were encountered: