-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
59 lines (41 loc) · 1.82 KB
/
.env
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
54
55
56
57
58
59
# ---- DO NOT COMMIT SECRETS TO THIS FILE ----
# Environment variables shared between ci and DEV.
# See https://github.com/cloudquery/cloudquery/releases?q=cli
CQ_CLI=5.2.0
# See https://hub.cloudquery.io/plugins/destination/cloudquery/postgresql/versions
CQ_POSTGRES_DESTINATION=7.2.0
# See https://github.com/cloudquery/cloudquery/releases?q=plugins-source-postgresql
CQ_POSTGRES_SOURCE=3.0.7
# See https://hub.cloudquery.io/plugins/source/cloudquery/aws/versions
CQ_AWS=27.5.0
# See https://hub.cloudquery.io/plugins/source/cloudquery/github/versions
CQ_GITHUB=11.11.1
# See https://hub.cloudquery.io/plugins/source/cloudquery/fastly/versions
CQ_FASTLY=3.0.7
# See https://github.com/guardian/cq-source-galaxies
CQ_GUARDIAN_GALAXIES=1.1.8
# See https://hub.cloudquery.io/plugins/source/cloudquery/snyk/versions
CQ_SNYK=5.4.0
# See https://github.com/guardian/cq-source-github-languages
CQ_GITHUB_LANGUAGES=0.0.5
# See https://github.com/guardian/cq-source-ns1
CQ_NS1=0.1.3
# See https://github.com/guardian/cq-image-packages
CQ_IMAGE_PACKAGES=1.0.1
# --- FOR LOCAL DEVELOPMENT ONLY ---
STAGE=DEV
DATABASE_USER=postgres
DATABASE_PASSWORD=not_at_all_secret
DATABASE_HOSTNAME=localhost
DATABASE_NAME=postgres
DATABASE_PORT=5432
DATABASE_URL=postgres://${DATABASE_USER}:${DATABASE_PASSWORD}@${DATABASE_HOSTNAME}:${DATABASE_PORT}/${DATABASE_NAME}
# Locally, CloudQuery and Postgres run within Docker.
# Hard-code the database hostname to 'postgres' (the Postgres container name), configuring CloudQuery to connect to Postgres via the Docker network.
CQ_DATABASE_URL=postgres://${DATABASE_USER}:${DATABASE_PASSWORD}@postgres:${DATABASE_PORT}/${DATABASE_NAME}
# Set this to 'false' to disable SQL query logging
QUERY_LOGGING=true
# Enables messaging from Repocop to Anghammarad for local testing
ENABLE_MESSAGING=false
INTERACTIVES_COUNT=3
STACK=deploy