Changeset - 7bbe064c0d2e
[Not reviewed]
0 2 0
Christopher Neugebauer - 7 years ago 2017-06-07 21:37:08
chrisjrn@gmail.com
Adds django-libsass as dependency; de-eldarionises the static folder
2 files changed with 14 insertions and 5 deletions:
0 comments (0 inline, 0 general)
pinaxcon/settings.py
Show inline comments
...
 
@@ -58,3 +58,3 @@ MEDIA_URL = "/site_media/media/"
 
# Example: "/home/media/media.lawrence.com/static/"
 
STATIC_ROOT = os.path.join(PACKAGE_ROOT, "site_media", "static")
 
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'staticfiles')
 

	
...
 
@@ -62,8 +62,8 @@ STATIC_ROOT = os.path.join(PACKAGE_ROOT, "site_media", "static")
 
# Example: "http://media.lawrence.com/static/"
 
STATIC_URL = "/site_media/static/"
 
STATIC_URL = '/static/'
 

	
 
# Additional locations of static files
 
STATICFILES_DIRS = [
 
    os.path.join(PROJECT_ROOT, "static", "dist"),
 
]
 
STATICFILES_DIRS = (
 
    os.path.join(PROJECT_ROOT, 'static'),
 
)
 

	
...
 
@@ -74,2 +74,3 @@ STATICFILES_FINDERS = [
 
    "django.contrib.staticfiles.finders.AppDirectoriesFinder",
 
    "compressor.finders.CompressorFinder",
 
]
...
 
@@ -174,2 +175,5 @@ INSTALLED_APPS = [
 
    "django_nose",
 

	
 
    # stylesheets and js
 
    'compressor',
 
]
...
 
@@ -205,2 +209,6 @@ LOGGING = {
 

	
 
COMPRESS_PRECOMPILERS = (
 
    ('text/x-scss', 'django_libsass.SassCompiler'),
 
)
 

	
 
FIXTURE_DIRS = [
requirements.txt
Show inline comments
...
 
@@ -9,2 +9,3 @@ pinax-pages==0.4.2
 
pinax-boxes==2.1.2
 
django-libsass==0.7
 

	
0 comments (0 inline, 0 general)