Moved staticfiles to stock/static

Added STATIC_ROOT to enable collection of staticfiles
Ignored static/ directory so changes by end user go untracked
Now required python manage.py collectstatic during install procedure
This commit is contained in:
Adarnof
2015-11-24 23:20:50 +00:00
parent 0607ad9bde
commit cf8d5b748b
98 changed files with 7 additions and 1 deletions

View File

@@ -128,7 +128,7 @@ TEMPLATE_DIRS = (
STATICFILES_DIRS = (
'customization/static',
'static',
'stock/static',
)
LOGIN_URL = '/login_user/'
@@ -149,6 +149,7 @@ USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.6/howto/static-files/
STATIC_URL = '/static/'
STATIC_ROOT = '/home/allianceserver/allianceauth/static/'
#####################################################
##