-
Notifications
You must be signed in to change notification settings - Fork 11
/
deployments.ts
152 lines (152 loc) · 4.12 KB
/
deployments.ts
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
export const deployments = [
{
name: "Alwaysdata",
url: "https://nitro.alwaysdata.net/",
dash: "https://admin.alwaysdata.com/",
docs: "https://nitro.unjs.io/deploy/providers/alwaysdata",
},
{
name: "AWS Lambda",
url: "",
dash: "https://aws.amazon.com/lambda/",
docs: "https://nitro.unjs.io/deploy/providers/aws",
},
{
name: "AWS Amplify",
url: "",
dash: "https://aws.amazon.com/amplify/",
docs: "https://nitro.unjs.io/deploy/providers/aws-amplify",
},
{
name: "Azure Static Web Apps",
url: "",
dash: "https://azure.microsoft.com/en-us/products/app-service/static",
docs: "https://nitro.unjs.io/deploy/providers/azure#azure-static-web-apps",
},
{
name: "Azure Functions",
url: "",
dash: "https://azure.microsoft.com/en-us/products/functions",
docs: "https://nitro.unjs.io/deploy/providers/azure#azure-functions",
},
{
name: "Cleavr",
url: "",
dash: "https://app.cleavr.io/",
docs: "https://nitro.unjs.io/deploy/providers/cleavr",
},
{
name: "Cloudflare Pages",
url: "https://nitro-deployment.pages.dev/",
dash: "https://dash.cloudflare.com/",
docs: "https://nitro.unjs.io/deploy/providers/cloudflare",
},
{
name: "Deno Deploy",
url: "",
dash: "https://dash.deno.com/",
docs: "https://nitro.unjs.io/deploy/providers/deno-deploy",
},
{
name: "DigitalOcean",
url: "",
dash: "https://cloud.digitalocean.com/",
docs: "https://nitro.unjs.io/deploy/providers/digitalocean",
},
{
name: "Edgio",
url: "",
dash: "https://edgio.io/",
docs: "https://nitro.unjs.io/deploy/providers/edgio",
},
{
name: "Firebase Hosting",
url: "",
dash: "https://console.firebase.google.com/",
docs: "https://nitro.unjs.io/deploy/providers/firebase",
},
{
name: "Firebase App Hosting",
url: "https://nitro-app--nitro-949b8.europe-west4.hosted.app/",
dash: "https://console.firebase.google.com/",
docs: "https://nitro.unjs.io/deploy/providers/firebase",
},
{
name: "Flightcontrol",
url: "",
dash: "https://app.flightcontrol.dev/",
docs: "https://nitro.unjs.io/deploy/providers/flightcontrol",
},
{
name: "Genezio",
url: "",
dash: "https://app.genez.io/",
docs: "https://nitro.unjs.io/deploy/providers/genezio",
},
{
name: "Heroku",
url: "",
dash: "https://dashboard.heroku.com/",
docs: "https://nitro.unjs.io/deploy/providers/heroku",
},
{
name: "Koyeb",
url: "",
dash: "https://app.koyeb.com/",
docs: "https://nitro.unjs.io/deploy/providers/koyeb",
},
{
name: "Netlify Functions",
url: "https://nitro-deployment.netlify.app/",
dash: "https://app.netlify.com/",
docs: "https://nitro.unjs.io/deploy/providers/netlify",
},
{
name: "Netflify Edge",
url: "https://nitro-deployment-edge.netlify.app/",
dash: "https://app.netlify.com/",
docs: "https://nitro.unjs.io/deploy/providers/netlify#netlify-edge-functions",
},
{
name: "Platform.sh",
url: "",
dash: "https://console.platform.sh/",
docs: "https://nitro.unjs.io/deploy/providers/platformsh",
},
{
name: "Render.com",
url: "https://nitro-app.onrender.com/",
dash: "https://dashboard.render.com/",
docs: "https://nitro.unjs.io/deploy/providers/render",
},
{
name: "Stormkit",
url: "https://nitro.stormkit.dev/",
dash: "https://app.stormkit.io/",
docs: "https://nitro.unjs.io/deploy/providers/stormkit",
},
{
name: "Vercel",
url: "https://nitro-app.vercel.app/",
dash: "https://vercel.com/",
docs: "https://nitro.unjs.io/deploy/providers/vercel",
},
{
name: "Vercel Edge",
url: "https://nitro-app-edge.vercel.app/",
dash: "https://vercel.com/",
docs: "https://nitro.unjs.io/deploy/providers/vercel#vercel-edge-functions",
},
{
name: "Zeabur",
url: "",
dash: "https://dash.zeabur.com/",
docs: "https://nitro.unjs.io/deploy/providers/zeabur",
},
{
name: "Zerops",
url: "https://app-6a5-3000.prg1.zerops.app/",
dash: "https://app.zerops.io/",
docs: "https://nitro.unjs.io/deploy/providers/zerops",
},
];