Skip to content
Snippets Groups Projects
Select Git revision
  • e458fab415b86c8ae636e861d104c47c08d0d826
  • tardis default
  • online-lip-2020
  • ss18
  • ws18
  • master protected
  • ws17
  • ss17
  • ws16
  • ss16
  • ws15 protected
  • ss15 protected
  • ws14 protected
  • buildhauer protected
  • ss14 protected
15 results

tmux.tex

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 }}