Skip to content

Commit

Permalink
Rename task 'r' to 'run' in pyproject.toml
Browse files Browse the repository at this point in the history
The 'r' task in the pyproject.toml file was renamed to 'run' for better clarity and readability. This change does not affect functionality but improves code maintainability.
  • Loading branch information
lipemorais committed Sep 14, 2024
1 parent 090bc9e commit 8c96685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ dependencies = [

[tool.taskipy.tasks]
docs = { cmd = "mkdocs serve", help = "run documentation server" }
r = { cmd = "python first_api/manage.py runserver", help = "run django dev server" }
run = { cmd = "python first_api/manage.py runserver", help = "run django dev server" }

0 comments on commit 8c96685

Please sign in to comment.