You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: www/src/pages/de/deployment/vercel.md
+15-15
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,15 @@
1
1
---
2
2
title: Vercel
3
-
description: Deploying to Vercel
3
+
description: Deployment mit Vercel
4
4
layout: ../../../layouts/docs.astro
5
-
lang: en
5
+
lang: de
6
6
---
7
7
8
-
We recommend deploying your app to [Vercel](https://vercel.com/?utm_source=t3-oss&utm_campaign=oss). It makes it super easy to deploy Next.js apps.
8
+
Wir empfehlen, deine App auf [Vercel](https://vercel.com/?utm_source=t3-oss&utm_campaign=oss) zu deployen. Es macht es super einfach, Next.js Apps zu deployen.
9
9
10
-
## Project Configuration
10
+
## Projekt Konfiguration
11
11
12
-
Vercel will likely configure your build command and publish the directory automatically. However, you can also specify this information along with other configurations by creating a file called [`vercel.json`](https://vercel.com/docs/project-configuration)and including the following commands:
12
+
Vercel wird sehr wahrscheinlich automatisch deinen Build-Befehl konfigurieren und das Verzeichnis veröffentlichen. Du kannst dies aber auch, zusammen mit anderen Konfigurationen, in einer Datei namens [`vercel.json`](https://vercel.com/docs/project-configuration)angeben und folgende Befehle einfügen:
13
13
14
14
```json
15
15
{
@@ -20,43 +20,43 @@ Vercel will likely configure your build command and publish the directory automa
20
20
}
21
21
```
22
22
23
-
## Using the Vercel Dashboard
23
+
## Verwendung des Vercel Dashboards
24
24
25
-
1.After pushing your code to a GitHub repository, sign up for[Vercel](https://vercel.com/?utm_source=t3-oss&utm_campaign=oss)with GitHub and click on**Add New Project**.
25
+
1.Nachdem du deinen Code in ein GitHub Repository gepusht hast, melde dich bei[Vercel](https://vercel.com/?utm_source=t3-oss&utm_campaign=oss)mit GitHub an und klicke auf**Add New Project**.
26
26
27
27

28
28
29
-
2.Import the GitHub repository with your project.
29
+
2.Importiere das GitHub Repository mit deinem Projekt, welches du deployen möchtest.
4.Click **Deploy**. Now whenever you push a change to your repository, Vercel will automatically redeploy your app!
37
+
4.Klicke auf **Deploy**. Wenn du nun einen Push in dein Repository machst, wird Vercel automatisch deine App neu deployen!
38
38
39
-
## Using the Vercel CLI
39
+
## Verwendung der Vercel CLI
40
40
41
-
To deploy from the command line you must first [install the Vercel CLI globally](https://vercel.com/docs/cli#installing-vercel-cli).
41
+
Um deine App von der Kommandozeile zu deployen, musst du zuerst die Vercel CLI global [installieren](https://vercel.com/docs/cli#installing-vercel-cli).
42
42
43
43
```bash
44
44
npm i -g vercel
45
45
```
46
46
47
-
Run the[`vercel`](https://vercel.com/docs/cli/deploying-from-cli)command to deploy your project.
47
+
Führe den[`vercel`](https://vercel.com/docs/cli/deploying-from-cli)Befehl aus, um dein Projekt zu deployen.
48
48
49
49
```bash
50
50
vercel
51
51
```
52
52
53
-
Include`--env DATABASE_URL=YOUR_DATABASE_URL_HERE`for environment variables like the database connection string. Use`--yes` if you want to skip the deployment questions and give the default answer for each.
53
+
Füge`--env DATABASE_URL=YOUR_DATABASE_URL_HERE`für Umgebungsvariablen wie die Datenbankverbindung hinzu. Verwende`--yes`, wenn du die Deployment-Fragen überspringen möchtest und die Standardantwort für jede geben möchtest.
After the first deployment this command will deploy to a preview branch. You will need to include `--prod`to push changes directly to the live site for future deployments.
59
+
Nach dem ersten Deployment wird dieser Befehl auf einen Preview-Branch deployen. Du musst `--prod`hinzufügen, um Änderungen direkt auf die Produktivsystem zu pushen.
0 commit comments