This repository was archived by the owner on Oct 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathconfig.yml
53 lines (45 loc) · 1.55 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
common: &common
# Github config
github_owner: yourcompany
github_app_name: aleph
github_repo: aleph_queries
# You can configure the type of authorization you will be using here
# options are [saml, database, disabled]
#
# If you choose to use database authenication
# you'll want to first start off with authentication disabled
# you can then navigate to /admin and create users
# once you have users created, youll be able to sign in normally with them
auth_type: database
# If you are using SAML auth, you'll need to have:
#
# saml_issuer: <My App>
# saml_name_identifier_format: <"urn:oasis:names:tc:SAML:2.0:nameid-format:transient">
# Convert database identifiers to lowercase
# If true, schema information (schema, table, column names) will be converted to lowercase
# in the Schema tab as well as autocomplete in the Query editor. It is recommended to set
# this to true only if your Snowflake `QUOTED_IDENTIFIERS_IGNORE_CASE` account setting
# is true (so `SELECT * FROM "mytable"` can reference MYTABLE table even when Snowflake
# stores the table name in uppercase).
lowercase_db_identifiers: false
development:
<<: *common
github_ref: heads/development
s3_bucket: aleph-development
s3_folder: results
auth_type: disabled
test:
<<: *common
auth_type: disabled
staging:
<<: *common
github_ref: heads/staging
s3_bucket: aleph-staging
s3_folder: results
auth_type: database
production:
<<: *common
github_ref: heads/production
s3_bucket: aleph-production
s3_folder: results
auth_type: database