Updates for the manifest storage

- Fix missing file references with a symlink
- Fix missing font
humitos/clean/fabric-function
David Fischer 2018-07-25 12:21:47 -07:00
parent c0595c1e52
commit 1f55b3a89d
No known key found for this signature in database
GPG Key ID: F0C9B0ADA737AB60
4 changed files with 3 additions and 1 deletions

View File

@ -27,6 +27,7 @@ var sources = {
'css/badge_only.css': {src: 'bower_components/sphinx-rtd-theme/sphinx_rtd_theme/static/css/badge_only.css'},
'css/theme.css': {src: 'bower_components/sphinx-rtd-theme/sphinx_rtd_theme/static/css/theme.css'},
'font/Lato-BoldItalic.ttf': {src: 'bower_components/lato-googlefont/Lato-BoldItalic.ttf'},
'font/Lato-Bold.ttf': {src: 'bower_components/lato-googlefont/Lato-Bold.ttf'},
'font/Lato-Regular.ttf': {src: 'bower_components/lato-googlefont/Lato-Regular.ttf'},
'font/Lato-Italic.ttf': {src: 'bower_components/lato-googlefont/Lato-Italic.ttf'},

Binary file not shown.

View File

@ -0,0 +1 @@
font

View File

@ -17,4 +17,4 @@ class MediaAzureStorage(HashedFilesMixin, AzureStorage):
* Uploads them to our Azure container
"""
azure_container = getattr(settings, 'AZURE_BUILD_STORAGE_CONTAINER', None) or 'media'
azure_container = getattr(settings, 'AZURE_MEDIA_STORAGE_CONTAINER', None) or 'media'