Use the new HyperKitty design

This commit is contained in:
Aurélien Bompard 2014-09-16 15:01:06 +00:00
parent 1332fbfbd7
commit 067c287eab
2 changed files with 10 additions and 7 deletions

View file

@ -11,7 +11,7 @@ CONFDIR=`yamlget confdir $CONFFILE`
INDEXDIR=$BASEDIR/kittystore_search_index INDEXDIR=$BASEDIR/kittystore_search_index
django-admin collectstatic --clear --noinput --verbosity 0 --pythonpath $CONFDIR --settings settings django-admin collectstatic --clear --noinput --verbosity 0 --pythonpath $CONFDIR --settings settings
django-admin assets build --parse-templates --pythonpath $CONFDIR --settings settings django-admin compress --pythonpath $CONFDIR --settings settings
django-admin syncdb --pythonpath $CONFDIR --settings settings_admin --noinput --migrate django-admin syncdb --pythonpath $CONFDIR --settings settings_admin --noinput --migrate
django-admin loaddata /etc/postorius/sites/default/initial-user.json --pythonpath $CONFDIR --settings settings_admin django-admin loaddata /etc/postorius/sites/default/initial-user.json --pythonpath $CONFDIR --settings settings_admin
kittystore-updatedb --pythonpath $CONFDIR --settings settings_admin kittystore-updatedb --pythonpath $CONFDIR --settings settings_admin

View file

@ -111,7 +111,7 @@ STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
# 'django.contrib.staticfiles.finders.DefaultStorageFinder', # 'django.contrib.staticfiles.finders.DefaultStorageFinder',
'django_assets.finders.AssetsFinder', 'compressor.finders.CompressorFinder',
) )
# Make this unique, and don't share it with anybody. # Make this unique, and don't share it with anybody.
@ -196,7 +196,7 @@ INSTALLED_APPS = (
'django_gravatar', 'django_gravatar',
'south', 'south',
'crispy_forms', 'crispy_forms',
'django_assets', 'compressor',
'paintstore', 'paintstore',
'django_browserid', 'django_browserid',
'postorius', 'postorius',
@ -262,11 +262,14 @@ BROWSERID_VERIFY_CLASS = "django_browserid.views.Verify"
#GRAVATAR_DEFAULT_SECURE = True #GRAVATAR_DEFAULT_SECURE = True
# #
# django-assets # django-compressor
# https://pypi.python.org/pypi/django-assets # https://pypi.python.org/pypi/django_compressor
# #
ASSETS_DEBUG = DEBUG COMPRESS_PRECOMPILERS = (
ASSETS_AUTO_BUILD = DEBUG ('text/less', 'lessc {infile} {outfile}'),
)
# needed for debug mode
#INTERNAL_IPS = ('127.0.0.1',)
# A sample logging configuration. The only tangible logging # A sample logging configuration. The only tangible logging