add django-avatar to INSTALL instructions

This commit is contained in:
Frédéric Péters 2014-05-31 12:54:57 +02:00
parent 0e6cc07e9d
commit acfb0a1402
1 changed files with 10 additions and 4 deletions

14
INSTALL
View File

@ -5,10 +5,12 @@ cd bistro
python setup.py install
askbot-setup
# location: ., postgresql, etc.
python manage.py syncdb
python manage.py migrate askbot
python manage.py migrate django_authopenid
vi settings.py # tack this at the end:
pip install -e git+git://github.com/ericflo/django-avatar.git#egg=django-avatar
vi settings.py
# append 'avatar' to INSTALLED_APPS
# tack this at the end:
from bar.local_settings import *
from bar.live_settings import *
@ -26,3 +28,7 @@ vi settings.py # tack this at the end:
ASKBOT_EXTRA_SKINS_DIR,
)
python manage.py syncdb
python manage.py migrate askbot
python manage.py migrate django_authopenid