Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs/recipes/working-with-starters #41

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions docs/docs/recipes/working-with-starters.md
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
---
title: "Recipes: Working with Starters"
title: "Ricette: Lavorare con gli Starter"
tableOfContentsDepth: 1
---

[Starters](/docs/starters/) are boilerplate Gatsby sites maintained officially, or by the community.
Gli [Starter](/docs/starters/) sono siti template mantenuti officialmente o dalla community.
albertopasqualetto marked this conversation as resolved.
Show resolved Hide resolved

## Using a starter
## Usare uno starter

### Prerequisites
### Prerequisiti

- The [Gatsby CLI](/docs/gatsby-cli) installed
- La [Gatsby CLI](/docs/gatsby-cli) installata

### Directions
### Istruzioni

1. Find the starter you'd like to use. (_The [Starter Library](/starters/?v=2) is a good place to look!_)
1. Trova lo starter che vorresti usare. (_La [Liberia Standard](/starters/?v=2) è un buon posto dove guardare!_)

2. Generate a new site based on the starter. In the terminal, run:
2. Genera un nuovo sito basato sullo starter. Nel terminale esegui:

```shell
gatsby new {your-project-name} {link-to-starter}
gatsby new {nome-tuo-progetto} {link-allo-starter}
```

> _Don't run the above command as-is -- remember to replace {your-project-name} and {link-to-starter}!_
> _Non eseguire il comando qui sopra così com'è -- ricorda di rimpiazzare {nome-tuo-progetto} e {link-allo-starter}!_

3. Run your new site:
3. Esegui il tuo nuovo sito:

```shell
cd {your-project-name}
cd {nome-tuo-progetto}
gatsby develop
```

### Additional resources
### Risorse agguntive

- Follow a [more detailed guide](/docs/starters/) on using Gatsby starters.
- Learn how to use the [Gatsby CLI](/docs/gatsby-cli) tool to use starters in [tutorial part one](/tutorial/part-one/#using-gatsby-starters)
- Browse the [Starter Library](/starters/?v=2)
- Check out Gatsby's [official default starter](https://github.com/gatsbyjs/gatsby-starter-default)
- Segui una [guida più dettagliata](/docs/starters/) sull'uso degli starter di Gatsby.
- Impara come usare lo strumento della [Gatsby CLI](/docs/gatsby-cli) per usare gli starter nella [prima parte del tutorial](/tutorial/part-one/#using-gatsby-starters)
- Sfoglia la [Libreria Standard](/starters/?v=2)
- Dai un'occhiata allo [starter di default ufficiale](https://github.com/gatsbyjs/gatsby-starter-default) di Gatsby