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
@@ -145,10 +147,10 @@ Make sure [Node.js and npm are properly installed](/developer-docs/latest/setup-
145
147
* the **Starters** path for the quickest way to spin up a fullstack application powered by a Strapi back end,
146
148
* or the **Hands-on** path for a more DIY approach to run your project.
147
149
148
-
::::: tabs type:card
150
+
:::::: tabs type:card
149
151
<!-- we need 5 colons or it will conflict with the callouts markup -->
150
152
151
-
:::: tab Starters
153
+
::::: tab Starters
152
154
153
155
## 🚀 Part A: Create a new project with Strapi starters
154
156
@@ -160,26 +162,17 @@ This quick start guide has been specifically tailored to use the [Gatsby blog st
160
162
161
163
To create a [Gatsby](https://www.gatsbyjs.com/) blog using Strapi, run the following command in a terminal:
162
164
163
-
<ClientOnly>
164
-
<code-group>
165
-
<code-blocktitle="NPM">
166
-
167
-
```bash
165
+
:::: tabs card
166
+
::: tab npm
167
+
```bash
168
168
npx create-strapi-starter my-project gatsby-blog
169
-
```
170
-
171
-
</code-block>
172
-
173
-
<code-blocktitle="YARN">
174
-
175
-
```bash
169
+
```
170
+
:::
171
+
::: tab yarn
172
+
```bash
176
173
yarn create strapi-starter my-project gatsby-blog
177
-
```
178
-
179
-
</code-block>
180
-
181
-
</code-group>
182
-
</ClientOnly>
174
+
```
175
+
::::
183
176
184
177
During the installation, when terminal asks `Choose your installation type`: select the default `Quickstart (recommended)` option by pressing Enter. The installation then resumes — just let the magic happen!
185
178
@@ -291,36 +284,29 @@ The beauty of using Strapi [starters](https://strapi.io/starters) is that the St
291
284
* Read more about the [starters CLI](https://strapi.io/blog/announcing-the-strapi-starter-cli) on our blog.
292
285
* Start another project! We have lots of other [Starters](https://strapi.io/starters) you can use to kickstart your blog, e-commerce, corporate website, or portfolio project.
293
286
294
-
::::
287
+
:::::
295
288
296
-
:::: tab Hands-on
289
+
::::: tab Hands-on
297
290
298
291
## 🚀 Part A: Create a new project with Strapi
299
292
300
293
### Step 1: Run the installation script
301
294
302
295
Run the following command in a terminal:
303
296
304
-
<ClientOnly>
305
-
<code-group>
306
-
<code-blocktitle="NPM">
307
-
308
-
```bash
297
+
:::: tabs card
298
+
::: tab npm
299
+
```bash
309
300
npx create-strapi-app my-project --quickstart
310
-
```
311
-
312
-
</code-block>
313
-
314
-
<code-blocktitle="YARN">
301
+
```
302
+
:::
315
303
316
-
```bash
304
+
::: tab yarn
305
+
```bash
317
306
yarn create strapi-app my-project --quickstart
318
-
```
319
-
320
-
</code-block>
321
-
322
-
</code-group>
323
-
</ClientOnly>
307
+
```
308
+
:::
309
+
::::
324
310
325
311
### Step 2: Register the first administrator user
326
312
@@ -515,6 +501,6 @@ The next step is to deploy both your Strapi back end and the front end on the pl
515
501
516
502
👉 You can deploy the Strapi back end on various services: Amazon AWS, Microsoft Azure, DigitalOcean, Google App Engine, Heroku, and many more (see our [Deployment guides](/developer-docs/latest/setup-deployment-guides/deployment.md)).
0 commit comments