From acfb0a1402fa1b3a5d9cfee539f27e99d89a7c20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Sat, 31 May 2014 12:54:57 +0200 Subject: [PATCH] add django-avatar to INSTALL instructions --- INSTALL | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/INSTALL b/INSTALL index 0a33bb37..db61df01 100644 --- a/INSTALL +++ b/INSTALL @@ -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