You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -185,7 +185,7 @@ We'll find out a bit more about static files later in the tutorial, when we edit
185
185
For now we just need to run an extra command called `collectstatic`, on the server. It tells Django to gather up all the static files it needs on the server. Mostly, these are the static files that make the admin site look pretty at the moment.
186
186
187
187
188
-
20:20 ~ $ python manage.py collectstatic
188
+
$ python manage.py collectstatic
189
189
190
190
You have requested to collect static files at the destination
191
191
location as specified in your settings:
@@ -214,13 +214,13 @@ Here's another thing that's different between your own computer and the server -
214
214
So we initialise the database on the server just like we did the one on your own computer, with `migrate` and `createsuperuser`:
0 commit comments