mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-14 02:42:21 +01:00
Add links for submitting issues or features.
This commit is contained in:
committed by
Daan Sprenkels
parent
416ae40763
commit
993ba2acca
@ -66,6 +66,7 @@ TEMPLATES = [
|
||||
'django.template.context_processors.request',
|
||||
'django.contrib.auth.context_processors.auth',
|
||||
'django.contrib.messages.context_processors.messages',
|
||||
'marietje.context_processors.global_settings',
|
||||
],
|
||||
},
|
||||
},
|
||||
@ -79,8 +80,12 @@ WSGI_APPLICATION = 'marietje.wsgi.application'
|
||||
|
||||
DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.sqlite3',
|
||||
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
|
||||
'ENGINE': 'django.db.backends.mysql',
|
||||
'NAME': 'marietje',
|
||||
'USER': 'marietje',
|
||||
'PASSWORD': 'UYmINKUDXIfY1qudVhbr5UhJ61kVwZPA',
|
||||
'HOST': 'localhost',
|
||||
'PORT': '3306',
|
||||
}
|
||||
}
|
||||
|
||||
@ -155,3 +160,6 @@ CONTACT_EMAIL = 'marietje@science.ru.nl'
|
||||
|
||||
STATS_TOP_COUNT = 50
|
||||
STATS_REQUEST_IGNORE_USER_IDS = (51, 515)
|
||||
|
||||
ISSUES_URL = 'https://gitlab.science.ru.nl/Marietje/MarietjeDjango/issues'
|
||||
MERGE_REQUESTS_URL = 'https://gitlab.science.ru.nl/Marietje/MarietjeDjango/merge_requests'
|
||||
|
||||
Reference in New Issue
Block a user