Browse Source
Merge pull request #1143 from doccano/fix/webpack-loader
Update settings and move commands
pull/1160/head
Hiroki Nakayama
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
0 additions and
14 deletions
-
app/api/management/commands/create_admin.py
-
app/api/management/commands/create_role_mapping.py
-
app/api/management/commands/create_roles.py
-
app/api/management/commands/wait_for_db.py
-
app/app/settings.py
|
|
@ -52,15 +52,12 @@ INSTALLED_APPS = [ |
|
|
|
'django.contrib.sessions', |
|
|
|
'django.contrib.messages', |
|
|
|
'django.contrib.staticfiles', |
|
|
|
'server.apps.ServerConfig', |
|
|
|
'api.apps.ApiConfig', |
|
|
|
# 'widget_tweaks', |
|
|
|
'rest_framework', |
|
|
|
'rest_framework.authtoken', |
|
|
|
'django_filters', |
|
|
|
'social_django', |
|
|
|
'polymorphic', |
|
|
|
# 'webpack_loader', |
|
|
|
'corsheaders', |
|
|
|
'drf_yasg' |
|
|
|
] |
|
|
@ -124,17 +121,6 @@ STATICFILES_DIRS = [ |
|
|
|
|
|
|
|
STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage' |
|
|
|
|
|
|
|
WEBPACK_LOADER = { |
|
|
|
'DEFAULT': { |
|
|
|
'CACHE': not DEBUG, |
|
|
|
'BUNDLE_DIR_NAME': 'bundle/', |
|
|
|
'STATS_FILE': path.join(BASE_DIR, 'server', 'static', 'webpack-stats.json'), |
|
|
|
'POLL_INTERVAL': 0.1, |
|
|
|
'TIMEOUT': None, |
|
|
|
'IGNORE': [r'.*\.hot-update.js', r'.+\.map'] |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
WSGI_APPLICATION = 'app.wsgi.application' |
|
|
|
|
|
|
|
AUTHENTICATION_BACKENDS = [ |
|
|
|