Browse Source

Merge pull request #16 from BridgeCityBicycleCoop/development

One day this will work!
feature/python-error-tracking
Drew Larson 8 years ago
committed by GitHub
parent
commit
620d9c68f4
  1. 6
      bikeshop_project/bikeshop/settings/base.py
  2. 1
      bower.json

6
bikeshop_project/bikeshop/settings/base.py

@ -123,10 +123,10 @@ STATICFILES_FINDERS = (
'compressor.finders.CompressorFinder', 'compressor.finders.CompressorFinder',
) )
STATICFILES_DIRS = [ STATICFILES_DIRS = [
('vendor', os.path.join(BASE_DIR, 'vendor')), ('vendor', os.path.join(BASE_DIR, '../vendor')),
os.path.join(BASE_DIR, 'assets') os.path.join(BASE_DIR, '../assets')
] ]
STATIC_ROOT = 'STATIC' STATIC_ROOT = 'static'
STATIC_URL = '/static/' STATIC_URL = '/static/'
AUTH_USER_MODEL = 'registration.CustomUser' AUTH_USER_MODEL = 'registration.CustomUser'

1
bower.json

@ -9,6 +9,7 @@
"license": "MIT", "license": "MIT",
"homepage": "", "homepage": "",
"private": true, "private": true,
"directory": "vendor",
"ignore": [ "ignore": [
"**/.*", "**/.*",
"node_modules", "node_modules",

Loading…
Cancel
Save