Skip to content

Commit d69c843

Browse files
committed
Add instruction to run migrations
1 parent 54dd917 commit d69c843

File tree

1 file changed

+6
-0
lines changed
  • en/add_wagtail_to_your_website/install_wagtail

1 file changed

+6
-0
lines changed

en/add_wagtail_to_your_website/install_wagtail/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,12 @@ urlpatterns = [
150150
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
151151
```
152152

153+
After this, we need to run migrations to create models for Wagtail as shown below:
154+
155+
```
156+
(myvenv) ~/djangogirls$ python manage.py runserver
157+
```
158+
153159
We should now be able to get the following when we visit `http://127.0.0.1:8000/cms/`:
154160

155161
![Wagtail CMS homepage](images/wagtail_cms.png)

0 commit comments

Comments
 (0)