From a983d7390a96ab0301ed1a37383cb17bd8502007 Mon Sep 17 00:00:00 2001 From: Joshua Taillon Date: Fri, 29 Jan 2016 18:26:50 -0500 Subject: [PATCH] Clarify how to start server on a different port/ip --- docs/setup.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/setup.rst b/docs/setup.rst index ddc182178..38df5d84c 100644 --- a/docs/setup.rst +++ b/docs/setup.rst @@ -55,9 +55,11 @@ Standard (Bare Metal) 4. Initialise the database with ``./manage.py migrate``. 5. Create a user for your Paperless instance with ``./manage.py createsuperuser``. Follow the prompts to create your user. -6. Start the webserver with ``./manage.py runserver``. +6. Start the webserver with ``./manage.py runserver :``. + If no specifc IP or port are given, the default is ``127.0.0.1:8000``. You should now be able to visit your (empty) `Paperless webserver`_ at - ``127.0.0.1:8000``. You can login with the user/pass you created in #5. + ``127.0.0.1:8000`` (or whatever you chose). You can login with the + user/pass you created in #5. 7. In a separate window, change to the ``src`` directory in this repo again, but this time, you should start the consumer script with ``./manage.py document_consumer``.