Changeset 9
Legend:
- Unmodified
- Added
- Removed
-
README
r8 r9 1 '''''the questionnaire webapp for realists with deadlines''''' 2 1 3 == Django Questionnaire app == 2 4 … … 6 8 and currently supports 4 types of answers. 7 9 10 Django Questionnaire is licensed under the BSD license, and is Free/Open Source Software. 11 8 12 Django Questionnaire is a cleaned-up/slimmed-down version of a framework Aperte 9 13 has developed for various clients. If you want a dedicated, hosted version of 10 14 Django Questionnaire, or if you want a version tailored to your needs, feel 11 15 free to contact Aperte: http://www.aperte-it.com/contact 16 17 == Screenshots == 18 19 Check out a few screenshots of the default template & admin: QuestionnaireScreenshots 12 20 13 21 == Demo install == … … 16 24 17 25 * 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) 19 27 20 28 Please note that the demo install is refreshed every hour and is to be used … … 32 40 33 41 * 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'') 35 43 36 * Modify the settings.pyfor your situation, at a minimum:44 * Modify the ''settings.py'' for your situation, at a minimum: 37 45 * 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 38 47 * 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) 39 49 40 * Either run python manage.py runserverin 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. 41 51 42 52 == Further details == … … 44 54 An initial SQLite database is included to bring you up to speed. If you want to 45 55 use it under a webserver, make sure the webserver user (www-data in Debian) 46 owns the database. 56 owns the database. 47 57 48 Django Questionnaire is licen sed under the MITlicense (the same that Django58 Django Questionnaire is licenced under the BSD license (the same that Django 49 59 uses). Feel free to do with it as you want, see LICENSE for the details. 50
