From 1a117c7fb7e571d8b2d5312c35e40faef4773e4e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 18 Mar 2012 04:11:14 -0400 Subject: [PATCH] Add test steps to the documentation --- docs/intro/installation.rst | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/intro/installation.rst b/docs/intro/installation.rst index 3d9056fab7..6bf8dcfec4 100644 --- a/docs/intro/installation.rst +++ b/docs/intro/installation.rst @@ -49,8 +49,15 @@ Populate the database with the project's schema doing:: Collect the static files of the project into the ``static`` folder for serving via a webserver:: $ ./manage.py collectstatic + +To test your installation, create a file called settings_local.py with the following content:: + + DEBUG = True + DEVELOPMENT = True + +Execute Django's runserver command to launch a local instance of **Mayan EDMS** and point your browser to the URL: 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. -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. Webfaction ----------