Skip to content

Commit c031890

Browse files
committed
Add 'run django dev server' command to taskipy tasks
A command line command was added to the pyproject.toml file to help developers quickly and easily initiate the Django development server. This addition to the taskipy tasks should help streamline the development process and make the local running and testing of the Django application more efficient.
1 parent e25fe9c commit c031890

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@ build-backend = "poetry.core.masonry.api"
2424

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

0 commit comments

Comments
 (0)