Changeset 9

Show
Ignore:
Timestamp:
10/15/08 18:15:35 (23 months ago)
Author:
alex
Message:
  • did I get this right now?!
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • README

    r8 r9  
     1'''''the questionnaire webapp for realists with deadlines''''' 
     2 
    13== Django Questionnaire app == 
    24 
     
    68and currently supports 4 types of answers. 
    79 
     10Django Questionnaire is licensed under the BSD license, and is Free/Open Source Software. 
     11 
    812Django Questionnaire is a cleaned-up/slimmed-down version of a framework Aperte 
    913has developed for various clients. If you want a dedicated, hosted version of 
    1014Django Questionnaire, or if you want a version tailored to your needs, feel 
    1115free to contact Aperte: http://www.aperte-it.com/contact 
     16 
     17== Screenshots == 
     18 
     19Check out a few screenshots of the default template & admin: QuestionnaireScreenshots 
    1220 
    1321== Demo install == 
     
    1624 
    1725 * User login: http://djangoquest-demo.aperte-it.com 
    18  * Admin login: http://djangoquest-demo.aperte-it.com/admin 
     26 * Admin login: http://djangoquest-demo.aperte-it.com/admin (username: admin, password: test) 
    1927 
    2028Please note that the demo install is refreshed every hour and is to be used 
     
    3240 
    3341 * Make sure you have Django 1.0 or newer installed. 
    34  * Unpack the source tarball, or checkout this project (svn co svn://alextreme.org/djangoquest ./djangoquest) 
     42 * Unpack a source tarball (see QuestionnaireDownloads), or checkout this project (''svn co svn://alextreme.org/djangoquest ./djangoquest'') 
    3543 
    36  * Modify the settings.py for your situation, at a minimum: 
     44 * Modify the ''settings.py'' for your situation, at a minimum: 
    3745   * Add your name/emailaddress to the ADMIN tuple (the first ADMIN is used for sending the invitations) 
     46   * Change the WORKING_DIRECTORY to the location of your project directory 
    3847   * Change the QUESTIONNAIRE_URL to the domain where you want to host this project (this URL is sent to your users in order to login) 
     48   * Change the SECRET_KEY variable to something else (any random string will do) 
    3949 
    40  * Either run python manage.py runserver in the project directory, or follow the Django instructions for setting up the directory for your webserver. 
     50 * Either run ''python manage.py runserver'' in the project directory, or follow the Django instructions for setting up the directory for your webserver. 
    4151 
    4252== Further details == 
     
    4454An initial SQLite database is included to bring you up to speed. If you want to 
    4555use it under a webserver, make sure the webserver user (www-data in Debian)  
    46 owns the database.  
     56owns the database. 
    4757 
    48 Django Questionnaire is licensed under the MIT license (the same that Django 
     58Django Questionnaire is licenced under the BSD license (the same that Django 
    4959uses). Feel free to do with it as you want, see LICENSE for the details. 
    50