added custom settings and requirements file

This commit is contained in:
artus40
2017-09-21 17:25:19 +02:00
parent 2e0cde3552
commit 1dfbbc7506
2 changed files with 20 additions and 0 deletions

18
app_settings.py Normal file
View File

@@ -0,0 +1,18 @@
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',
}
}