-
Notifications
You must be signed in to change notification settings - Fork 8
/
redwood.toml
33 lines (32 loc) · 945 Bytes
/
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
# 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]
port = 8910
apiProxyPath = "/api"
includeEnvironmentVariables = [
'FIREBASE_API_KEY',
'FIREBASE_AUTH_DOMAIN',
'FIREBASE_DATABASE_URL',
'FIREBASE_PROJECT_ID',
'FIREBASE_STORAGE_BUCKET',
'FIREBASE_MESSAGING_SENDER_ID',
'FIREBASE_APP_ID',
]
[api]
port = 8911
schemaPath = "./api/db/schema.prisma"
includeEnvironmentVariables = [
'FIREBASE_API_KEY',
'FIREBASE_AUTH_DOMAIN',
'FIREBASE_DATABASE_URL',
'FIREBASE_PROJECT_ID',
'FIREBASE_STORAGE_BUCKET',
'FIREBASE_MESSAGING_SENDER_ID',
'FIREBASE_APP_ID',
]
[browser]
open = true