aboutsummaryrefslogtreecommitdiff
path: root/ansible/roles/install-app/templates/flask_settings
blob: 5d1ea1b31ab37ddd5fde6eff53596f3d9a4c6be9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Managed via ansible, do not edit!

PREFERRED_URL_SCHEME = 'http'
# Add the trailing slash!
BACKEND_URL = '{{ backend_url }}'
BASE_URL = '{{ base_url }}'
BACKEND_TOKEN = '{{ backend_token }}'
SECRET_KEY = '{{ secret_key }}'
# Add the trailing slash!
FILE_SERVER_URL = 'http://armcloud.us/kernel-ci/'

{% if role == "production" %}
DEBUG = False
{% else %}
DEBUG = True
{% endif %}
TESTING = DEBUG