Skip to content

Commit c6c9687

Browse files
committed
update docs in frontend too
1 parent 98b567a commit c6c9687

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

project/core/templates/base.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,19 +140,19 @@ <h2>Application urls</h2>
140140
<h2>docker-compose commands</h2>
141141
<ul>
142142
<li>
143-
<code>docker-compose run --rm manage createsuperuser</code> - Command
143+
<code>docker-compose run --rm app ./manage.py createsuperuser</code> - Command
144144
to create a superuser
145145
</li>
146146
<li>
147-
<code>docker-compose run --rm manage tests</code>- Command to run
147+
<code>docker-compose run --rm app pytest</code> - Command to run
148148
tests
149149
</li>
150150
<li>
151-
<code>docker-compose run --rm makemigrations</code> - Command to make
151+
<code>docker-compose run --rm app ./manage.py makemigrations</code> - Command to make
152152
migrations (necessary if you change the models)
153153
</li>
154154
<li>
155-
<code>docker-compose run --rm migrate</code> - Command to migrate the
155+
<code>docker-compose run --rm app ./manage.py migrate</code> - Command to migrate the
156156
migrations (necessary if you ran the previous makemigrations step)
157157
</li>
158158
</ul>

0 commit comments

Comments
 (0)