24 lines
768 B
Python
24 lines
768 B
Python
from app.settings import *
|
|
|
|
INSTALLED_APPS += [
|
|
'bootstrap4',
|
|
'core',
|
|
]
|
|
|
|
BOOTSTRAP4 = {
|
|
'css_url': {
|
|
'url': "https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css",
|
|
'integrity': "sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M",
|
|
'crossorigin': 'anonymous',
|
|
},
|
|
'javascript_url': {
|
|
'url': "https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js",
|
|
'integrity': "sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1",
|
|
'crossorigin': 'anonymous',
|
|
}
|
|
}
|
|
|
|
STATIC_URL = "/cresus/static/"
|
|
STATIC_ROOT = os.path.join(BASE_DIR, "static/")
|
|
FORCE_SCRIPT_NAME = "/cresus"
|