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: docs/docs/guides/getting-started/installation/index.mdx
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,19 +27,19 @@ npx @vendure/create my-shop
27
27
Next, choose the "Quick Start" option. This is the fastest way to get a Vendure server up and running and will handle all the configuration for you.
28
28
If you have Docker Desktop installed, it will create and configure a Postgres database for you. If not, it will use SQLite.
29
29
30
-
```text
30
+
```console
31
31
┌ Let's create a Vendure App ✨
32
32
│
33
33
◆ How should we proceed?
34
-
│ ● Quick Start (Get up and running in a single step) // [!code highlight]
34
+
│ ● Quick Start (Get up and running in a single step) # [!code highlight]
35
35
│ ○ Manual Configuration
36
36
└
37
37
```
38
38
39
39
Next you'll be prompted to include our official Next.js storefront starter in your project. This is optional, but recommended if you want to
40
40
quickly see a working storefront connected to your Vendure server.
41
41
42
-
```text
42
+
```console
43
43
┌ Let's create a Vendure App ✨
44
44
│
45
45
◇ How should we proceed?
@@ -49,10 +49,10 @@ quickly see a working storefront connected to your Vendure server.
49
49
│
50
50
◇ Docker is running
51
51
│
52
-
◆ Would you like to include the Next.js storefront? // [!code highlight]
53
-
│ ○ No // [!code highlight]
54
-
│ ● Yes // [!code highlight]
55
-
└ // [!code highlight]
52
+
◆ Would you like to include the Next.js storefront? # [!code highlight]
53
+
│ ○ No # [!code highlight]
54
+
│ ● Yes # [!code highlight]
55
+
└ # [!code highlight]
56
56
```
57
57
58
58
And that's it! After a minute or two, you'll have a **fully-functional Vendure server** installed locally.
@@ -75,7 +75,7 @@ Vendure supports a number of different databases. The `@vendure/create` tool wil
75
75
76
76
**To quickly test out Vendure, we recommend using SQLite**, which requires no external dependencies. You can always switch to a different database later [by changing your configuration file](/developer-guide/configuration/#connecting-to-the-database).
77
77
78
-
```text
78
+
```console
79
79
┌ Let's create a Vendure App ✨
80
80
│
81
81
◇ How should we proceed?
@@ -87,7 +87,7 @@ Vendure supports a number of different databases. The `@vendure/create` tool wil
87
87
│ ○ MySQL
88
88
│ ○ MariaDB
89
89
│ ○ Postgres
90
-
│ ● SQLite // [!code highlight]
90
+
│ ● SQLite # [!code highlight]
91
91
└
92
92
```
93
93
@@ -110,16 +110,16 @@ The final prompt will ask whether to populate your new Vendure server with some
110
110
111
111
**We recommend you do so**, as it will give you a good starting point for exploring the APIs, which we will cover in the [Try the API section](/getting-started/try-the-api/), as well as providing some data to use when building your own storefront.
112
112
113
-
```text
113
+
```console
114
114
┌ Let's create a Vendure App ✨
115
115
│
116
116
◇ How should we proceed?
117
117
│ Manual Configuration
118
118
│
119
-
// ...
119
+
#...
120
120
│
121
121
◆ Populate with some sample product data?
122
-
│ ● yes // [!code highlight]
122
+
│ ● yes # [!code highlight]
123
123
│ ○ no
124
124
└
125
125
```
@@ -134,7 +134,7 @@ Next, a project scaffold will be created and dependencies installed. This may ta
0 commit comments