fmartingr
/
shelfzilla
Archived
1
0
Fork 0

Fixed bower not copying bootstrap's fonts

This commit is contained in:
Felipe Martin 2014-03-28 13:30:14 +01:00
parent c92b23a43f
commit 79a79debc7
2 changed files with 13 additions and 1 deletions

View File

@ -11,11 +11,17 @@ module.exports = (grunt) ->
options:
packageSpecific:
bootflatv2:
dest: 'static_components/fonts',
files: [
'css/bootstrap.min.css',
'bootflat/css/bootflat.min.css',
'bootflat/img/check_flat/default.png',
'bootflat/js/icheck.min.js'
'bootflat/js/icheck.min.js',
'js/bootstrap.min.js',
'fonts/glyphicons-halflings-regular.eot',
'fonts/glyphicons-halflings-regular.svg',
'fonts/glyphicons-halflings-regular.ttf',
'fonts/glyphicons-halflings-regular.woff',
]
less:
@ -39,6 +45,7 @@ module.exports = (grunt) ->
src: [
"static_components/js/jquery.js",
"static_components/js/vegas.js",
"static_components/js/bootstrap.min.js",
"static_components/js/icheck.min.js",
"shelfzilla/themes/bootflat/static/js/main.full.js",
]

View File

@ -8,3 +8,8 @@ TEMPLATE_DEBUG = True
DATABASES = {
'default': dj_database_url.parse('postgres:///shelfzilla')
}
# Bower
STATICFILES_DIRS += (
os.path.join(BASE_DIR, "..", "static_components"),
)