From a6ee0c91887c9b964ca9bd584495bec29bb9184a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 29 May 2012 03:06:54 -0400 Subject: [PATCH] Add installation test step --- docs/intro/installation.rst | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/intro/installation.rst b/docs/intro/installation.rst index bfcffe1ad3..cb0285e2ab 100644 --- a/docs/intro/installation.rst +++ b/docs/intro/installation.rst @@ -50,7 +50,17 @@ Collect the static files of the project into the ``static`` folder for serving v $ ./manage.py collectstatic -After that deploy it using the webserver of your preference. If your are using Apache_, a sample site file is included under the contrib directory. +To test your installation, create a file called settings_local.py with the following content:: + + DEBUG=True + DEVELOPMENT=True + +Execute Django’s development server using the ``runserver`` command to launch a local instance of Mayan EDMS:: + + $ ./manager.py runserver + +Point your browser to http://127:0.0.1:8000, if everything was installed correctly you should see the login screen. After making sure everything is running correctly, stop the runserver command, delete the settings_local.py and deploy Mayan EDMS using the webserver of your preference. If your are using Apache_, a sample site file is included under the contrib directory. + Webfaction ----------