-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
36 lines (26 loc) · 1.15 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
###############
Django Voice
###############
REQUIREMENTS
============
Firstly, you must have a working Django installation. If you cannot access
the Django administration screen you won't be able to get DjangoVoice going.
The following applications need to be installed in your PYTHONPATH prior to
installing and using djangovoice, and they must be listed in your
INSTALLED_APPS setting:
django-voting http://code.google.com/p/django-voting/
django-gravatar http://code.google.com/p/django-gravatar/
In addition, the following applications (which are included in the core
Django distribution) need to be installed and listed under INSTALLED_APPS:
django.contrib.auth
django.contrib.comments
INSTALLATION
============
1. Install Django
2. Install the above dependencies
3. Place the 'djangovoice' folder in your PYTHONPATH
4. Add 'djangovoice' to your INSTALLED_APPS setting in settings.py
5. Add djangovoice to your urlconf in urls.py:
url(r'^feedback/', include('djangovoice.urls')),
6. Run './manage.py syncdb' to create the required database tables
7. Browse to http://yoursite/feedback/ - easy!