-
Notifications
You must be signed in to change notification settings - Fork 4
/
netlify.toml
112 lines (93 loc) · 2.63 KB
/
netlify.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[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 = "/docs/*"
to = "https://docs.redwoodjs.com/docs/:splat"
status = 301
force = true
[[redirects]]
from = "/cookbook"
to = "https://docs.redwoodjs.com/docs/how-to/index"
status = 301
force = true
[[redirects]]
from = "/cookbook/*"
to = "https://docs.redwoodjs.com/docs/how-to/:splat"
status = 301
force = true
[[redirects]]
from = "/tutorial"
to = "https://docs.redwoodjs.com/docs/tutorial/welcome-to-redwood"
status = 301
force = true
[[redirects]]
from = "/tutorial/*"
to = "https://docs.redwoodjs.com/docs/tutorial/:splat"
status = 301
force = true
[[redirects]]
from = "/contributing"
to = "https://docs.redwoodjs.com/docs/contributing"
[[redirects]]
from = "/reference/command-line-interface"
to = "https://docs.redwoodjs.com/docs/cli-commands"
status = 301
force = true
[[redirects]]
from = "/quick-start"
to = "https://docs.redwoodjs.com/docs/quick-start"
status = 301
force = true
[[redirects]]
from = "/quickstart"
to = "https://docs.redwoodjs.com/docs/quick-start"
status = 301
force = true
[[redirects]]
from = "/newsletter"
to = "https://mailchi.mp/redwoodjs/redwoodjs-newsletter"
force = true
[[redirects]]
from ="/community"
to ="https://community.redwoodjs.com/t/welcome-to-the-redwoodjs-community/2416"
[[redirects]]
from ="/events"
to ="https://community.redwoodjs.com/t/redwood-events-you-re-invited/3853"
[[redirects]]
from ="/startup-club"
to ="https://forms.gle/fYsacoY4uKQmP24o8"
[[redirects]]
from = "/good-first-issue"
to = "https://github.com/orgs/redwoodjs/projects/11"
[[redirects]]
from = "/roadmap"
to = "/#roadmap"
status = 301
force = true
[[redirects]]
from = "/jobs"
to = "https://community.redwoodjs.com/c/jobs/29"
status = 301
force = true
[[redirects]]
from = "/blog/bighorn-walkthrough"
to = "/blog/rsc-now-in-redwoodjs"
status = 301
force = true
[[redirects]]
from = "/*"
to = "/200.html"
status = 200