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