Skip to content
Snippets Groups Projects
Commit 77cfe615 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

Merge branch 'update-sample-config' into 'main'

Update sample settings

See merge request !31
parents cb2a0b7a 03fd5caa
No related branches found
No related tags found
1 merge request!31Update sample settings
Pipeline #7438 passed
......@@ -68,7 +68,7 @@ docker-push:
services:
- docker:dind
script:
# every commit on main branch should build and push image as unstable
# every commit on main branch builds and pushes the image with labels "main" and "main-{hash}"
# elseif its a protected branch build and push to gitlab registry
# else it is from a tag (enforced by gitlab-ci rules)
# hint: tags are references independent of branches
......
# sample settings for steering
# Advanced settings for Steering
# Go to https://docs.aura.radio to learn how to configure LDAP.
from .settings import * # noqa
ADMINS = [("Ernesto", "ernesto@helsinki.at")]
MANAGERS = ADMINS
TIME_ZONE = "America/La_Paz"
# import the base settings
from steering.settings import * # noqa
# Import classes, functions, etc.
from django_auth_ldap.config import GroupOfNamesType
# and use them to extend or overwrite settings
AUTH_LDAP_GROUP_TYPE = GroupOfNamesType(name_attr="cn")
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment