Skip to content

Commit 8c60b08

Browse files
committed
update project run steps formatting
1 parent 9995228 commit 8c60b08

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

django_rest_cli/engine/utils.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ def display_project_setup_instructions(
107107
if Templates.BASIC.value in template_type:
108108
print_info_message(
109109
"Project Run Steps:Run the following commands\n\n"
110-
"""pip install -r requirements.txt --Ignore this if dr-cli
111-
already installed dependencies \n"""
110+
"""pip install -r requirements.txt
111+
NB: Skip the above command if dr-cli already installed dependencies \n"""
112112
"python manage.py migrate \n"
113113
"python manage.py runserver \n"
114114
"point your browser to `http://localhost:8000/api/v1/docs to view docs \n"
@@ -117,9 +117,9 @@ def display_project_setup_instructions(
117117
if Templates.MEDIOR.value in template_type:
118118
print_info_message(
119119
"Project Run Steps: Run the following commands:\n\n"
120-
"""pip install -r requirements.txt and
121-
pip install -r requirements-dev.txt
122-
--Ignore this if dr-cli installed dependencies \n"""
120+
"""pip install -r requirements.txt
121+
Then runpip install -r requirements-dev.txt
122+
NB: Skip the above commands if dr-cli already installed dependencies \n"""
123123
"pre-commit install \n"
124124
"python manage.py makemigrations users \n"
125125
"python manage.py migrate \n"

0 commit comments

Comments
 (0)