Changed ports to 8000

This commit is contained in:
Karl Hobley 2015-02-16 10:28:39 +00:00
parent f52203ec39
commit e6da637256
2 changed files with 4 additions and 4 deletions

View file

@ -22,7 +22,7 @@ Then, within the SSH session::
./manage.py runserver 0.0.0.0:8000
This will make the demo site available on your host machine at the URL http://localhost:8111/ - you can access the Wagtail admin interface at http://localhost:8111/admin/ . Further instructions can be found at :ref:`editor_manual`.
This will make the demo site available on your host machine at the URL http://localhost:8000/ - you can access the Wagtail admin interface at http://localhost:8000/admin/ . Further instructions can be found at :ref:`editor_manual`.
Once youve experimented with the demo site and are ready to build your own site, it's time to install Wagtail on your host machine. Even if you intend to do all further Wagtail work within Vagrant, installing the Wagtail package on your host machine will provide the ``wagtail start`` command that sets up the initial file structure for your project.

View file

@ -15,9 +15,9 @@ To setup the Vagrant box, run the following commands
djrun
If you now visit http://localhost:8111 you should see a very basic "Welcome to your new Wagtail site!" page.
If you now visit http://localhost:8000 you should see a very basic "Welcome to your new Wagtail site!" page.
You can browse the Wagtail admin interface at: http://localhost:8111/admin
You can browse the Wagtail admin interface at: http://localhost:8000/admin
You can read more about how Vagrant works at: https://docs.vagrantup.com/v2/
@ -34,4 +34,4 @@ You can read more about how Vagrant works at: https://docs.vagrantup.com/v2/
``djrun``
This is short for ``python manage.py runserver 0.0.0.0:8000``. This is used to run the testing server which is accessible from ``http://localhost:8111`` (note that the port number gets changed by Vagrant)
This is short for ``python manage.py runserver 0.0.0.0:8000``. This is used to run the testing server which is accessible from ``http://localhost:8000`` (note that the port number gets changed by Vagrant)