Skip to content
Snippets Groups Projects
Select Git revision
  • 5c6e5c057a96045f6e01d321b4564f5ba975b20f
  • master default protected
  • th/caddy-wip
  • th/caddy
  • th/lego
  • th/acmebot
  • pyzabbix
  • th/keycloak
8 results

alumnigraph.j2

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    alumnigraph.j2 931 B
    from secret_config import secret_key as SECRET_KEY
    
    SQLALCHEMY_DATABASE_URI = "postgresql://{{ app_user }}:@/{{ app_db_name }}"
    SQLALCHEMY_TRACK_MODIFICATIONS = False
    
    YEAR_DISTANCE = {{ alumni_graph_year_distance }}
    NOTIFICATION_WAITING_PERIOD = {{ alumni_graph_notification_waiting_period }}
    
    MAIL_FROM = "{{ alumni_graph_mail_from }}"
    MAIL_REPLY_TO = "{{ alumni_graph_mail_reply_to }}"
    
    SERVER_NAME = "{{ alumni_graph_server_name }}"
    #PREFERRED_URL_SCHEME = "https"
    
    MAIL_SERVER = "{{ alumni_graph_mail_server }}"
    MAIL_PORT = {{ alumni_graph_mail_port }}
    MAIL_USE_TLS = {{ alumni_graph_mail_tls }}
    {% if alumni_graph_mail_user is defined %}
    MAIL_USERNAME = "{{ alumni_graph_mail_user }}"
    MAIL_PASSWORD = "{{ alumni_graph_mail_pass }}"
    {% endif %}
    SEND_INVITATIONS = {{ alumni_graph_send_invitation }}
    SENTRY_URL = "{{ alumni_graph_sentry_url }}"
    BABEL_DEFAULT_LOCALE = "DE"
    
    CELERY_BROKER_URL = {{ alumni_graph_celery_broker }}