Skip to content

Commit 67c2afd

Browse files
committed
docs: translate vercel.md to german
1 parent 89ee80f commit 67c2afd

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

www/src/pages/de/deployment/vercel.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
title: Vercel
3-
description: Deploying to Vercel
3+
description: Deployment mit Vercel
44
layout: ../../../layouts/docs.astro
5-
lang: en
5+
lang: de
66
---
77

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.
99

10-
## Project Configuration
10+
## Projekt Konfiguration
1111

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:
1313

1414
```json
1515
{
@@ -20,43 +20,43 @@ Vercel will likely configure your build command and publish the directory automa
2020
}
2121
```
2222

23-
## Using the Vercel Dashboard
23+
## Verwendung des Vercel Dashboards
2424

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**.
2626

2727
![New project on Vercel](/images/vercel-new-project.webp)
2828

29-
2. Import the GitHub repository with your project.
29+
2. Importiere das GitHub Repository mit deinem Projekt, welches du deployen möchtest.
3030

3131
![Import repository](/images/vercel-import-project.webp)
3232

33-
3. Add your environment variables.
33+
3. Füge deine Umgebungsvariablen hinzu.
3434

3535
![Add environment variables](/images/vercel-env-vars.webp)
3636

37-
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!
3838

39-
## Using the Vercel CLI
39+
## Verwendung der Vercel CLI
4040

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).
4242

4343
```bash
4444
npm i -g vercel
4545
```
4646

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.
4848

4949
```bash
5050
vercel
5151
```
5252

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.
5454

5555
```bash
5656
vercel --env DATABASE_URL=YOUR_DATABASE_URL_HERE --yes
5757
```
5858

59-
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.
6060

6161
```bash
6262
vercel --prod

0 commit comments

Comments
 (0)