This repository has been archived by the owner on Apr 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.env.example
65 lines (49 loc) · 1.68 KB
/
.env.example
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
60
61
62
63
64
65
# Learn more about the Grouparoo environment variables @ https://www.grouparoo.com/docs/support/environment
#############
## GENERAL ##
#############
PORT=3000
WEB_URL=http://localhost:3000
WEB_SERVER=true
WORKERS=1
SERVER_TOKEN=my-server-token
# By default, the config directory should be located in a folder named "config" within the root of your project. You can change that with `GROUPAROO_CONFIG_DIR`
# GROUPAROO_CONFIG_DIR=/path/to/config
#############
## LOGGING ##
#############
GROUPAROO_LOG_LEVEL=info
# GROUPAROO_LOGS_PATH="logs"
# GROUPAROO_LOGS_STDOUT_DISABLE_COLOR=true
# GROUPAROO_LOGS_STDOUT_DISABLE_TIMESTAMP=true
###########
## REDIS ##
###########
# To use an in-memory redis mock (no persistence)
REDIS_URL="redis://mock"
# To use a Redis Server
# REDIS_URL="redis://localhost:6379/0"
##############
## DATABASE ##
##############
# To use sqlite
DATABASE_URL="sqlite://grouparoo_development.sqlite"
# To use Postgres without a username or password
# DATABASE_URL="postgresql://localhost:5432/grouparoo_development"
# To use Postgres with a username and password
# DATABASE_URL="postgresql://username:password@localhost:5432/grouparoo_development"
# With custom SSL options:
# DATABASE_SSL=true
# DATABASE_SSL_SELF_SIGNED=true
########################
## CONNECTION DETAILS ##
########################
# Snowflake
GROUPAROO_OPTION__APP__SNOWFLAKE_ACCOUNT = "xxx.us-east-1"
GROUPAROO_OPTION__APP__SNOWFLAKE_USERNAME = "..."
GROUPAROO_OPTION__APP__SNOWFLAKE_PASSWORD = "..."
GROUPAROO_OPTION__APP__SNOWFLAKE_WAREHOUSE = "..."
GROUPAROO_OPTION__APP__SNOWFLAKE_DATABASE = "..."
GROUPAROO_OPTION__APP__SNOWFLAKE_SCHEMA = "PUBLIC"
# Hubspot
GROUPAROO_OPTION__APP__HUBSPOT_API_KEY = "..."