32 lines
1003 B
TOML
32 lines
1003 B
TOML
[build]
|
|
command = "yarn rw deploy netlify"
|
|
publish = "web/dist"
|
|
functions = "api/dist/functions"
|
|
|
|
[dev]
|
|
# To use [Netlify Dev](https://www.netlify.com/products/dev/),
|
|
# install netlify-cli from https://docs.netlify.com/cli/get-started/#installation
|
|
# and then use netlify link https://docs.netlify.com/cli/get-started/#link-and-unlink-sites
|
|
# to connect your local project to a site already on Netlify
|
|
# then run netlify dev and our app will be accessible on the port specified below
|
|
framework = "redwoodjs"
|
|
# Set targetPort to the [web] side port as defined in redwood.toml
|
|
targetPort = 8910
|
|
# Point your browser to this port to access your RedwoodJS app
|
|
port = 8888
|
|
|
|
[[redirects]]
|
|
from = "/*"
|
|
to = "/index.html"
|
|
status = 200
|
|
|
|
[context.deploy-preview.environment]
|
|
CAD_LAMBDA_BASE_URL = "https://t7wdlz8ztf.execute-api.us-east-1.amazonaws.com/dev2"
|
|
|
|
[[plugins]]
|
|
package = "@sentry/netlify-build-plugin"
|
|
|
|
[plugins.inputs]
|
|
sentryOrg = "kurt"
|
|
sentryProject = "kurt"
|