https://github.com/jluttine/django-modelanswers
Model answer wiki for exercise problems in Django.
https://github.com/jluttine/django-modelanswers
Last synced: 3 months ago
JSON representation
Model answer wiki for exercise problems in Django.
- Host: GitHub
- URL: https://github.com/jluttine/django-modelanswers
- Owner: jluttine
- License: agpl-3.0
- Created: 2012-10-02T20:13:23.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-10-10T01:19:01.000Z (over 12 years ago)
- Last Synced: 2025-01-11T12:34:37.659Z (5 months ago)
- Language: Python
- Size: 215 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
Django site - Model answers
===========================Model answer wiki for exercise problems.
See the documentation in ``doc/`` folder or at
http://django-modelanswers.readthedocs.org/.Deploying
---------For development, you can use ``runserver``.
For deploying, you should have Apache and ``mod_wsgi`` installed. On
Ubuntu::sudo aptitude install apache2 libapache2-mod-wsgi
In ``/etc/apache2/httpd.conf``, add, for instance::
Alias /media/ /path/to/django-modelanswers/modelanswers/media/
Alias /static/ /path/to/django-modelanswers/modelanswers/sitestatic/
Order deny,allow
Allow from all
Order deny,allow
Allow from all
WSGIScriptAlias / /path/to/django-modelanswers/modelanswers/wsgi.py
WSGIPythonPath /path/to/django-modelanswers
Order allow,deny
Allow from all
Check that your ``django-modelanswers`` folder, sub-folders and all
parent folders have read-access for Apache. Also, Apache must have
write-access to the database. If using Sqlite3, also the parent
directory of the database must be writeable, therefore::chgrp www-data modelanswers/modelanswers.sqlite
chmod g+w modelanswers/modelanswers.sqlite
chgrp www-data modelanswersLicense and copyright
---------------------The application in ``diff_match_patch`` is licensed under Apache
License 2.0.For everything else applies the copyright and AGPLv3 license
conditions as described below.Copyright (C) 2011,2012 Jaakko Luttinen [email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Affero General Public License for more details.You should have received a copy of the GNU Affero General Public
License along with this program. If not, see
.