-
Notifications
You must be signed in to change notification settings - Fork 5
/
redwood.toml
44 lines (39 loc) · 1.23 KB
/
redwood.toml
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
# This file contains the configuration settings for your Redwood app.
# This file is also what makes your Redwood app a Redwood app.
# If you remove it and try to run `yarn rw dev`, you'll get an error.
#
# For the full list of options, see the "App Configuration: redwood.toml" doc:
# https://redwoodjs.com/docs/app-configuration-redwood-toml
[web]
bundler = "webpack"
title = "Redwood App"
port = 8910
host = "0.0.0.0"
# You can customize graphql and dbauth urls individually too:
# see https://redwoodjs.com/docs/app-configuration-redwood-toml#api-paths
apiUrl = "${API_URL:/.redwood/functions}"
includeEnvironmentVariables = [
# Add any ENV vars that should be available to the web side to this array
# See https://redwoodjs.com/docs/environment-variables#web
'DD_ENV',
'DD_RUM_APP_ID',
'DD_RUM_CLIENT_TOKEN',
'DD_RUM_ENABLED',
'DD_RUM_SESSION_REPLAY_SAMPLE_RATE',
'DD_RUM_SESSION_SAMPLE_RATE',
'DD_RUM_TRACK_USER_INTERACTIONS',
'DD_RUM_TRACK_RESOURCES',
'DD_RUM_TRACK_LONG_TASKS',
'DD_SERVICE',
'DD_SITE',
'DD_VERSION',
]
[api]
host = '0.0.0.0'
port = 8911
[browser]
open = false
[notifications]
versionUpdates = ["latest"]
[experimental.dockerfile]
enabled = true