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/apps/book/app/learn/installation/docker/page.mdx
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,7 @@ services:
143
143
- medusa_network
144
144
145
145
# Storefront
146
-
# This service runs the Next.js storefront.
146
+
# This service runs the Next.js Starter Storefront
147
147
storefront:
148
148
build: .
149
149
container_name: medusa_storefront
@@ -179,7 +179,7 @@ You define four services in this file:
179
179
- `postgres`: The PostgreSQL database service that stores your Medusa application's data.
180
180
- `redis`: The Redis service that stores session data.
181
181
- `medusa`: The Medusa service that runs the server and the admin dashboard. It connects to the PostgreSQL and Redis services.
182
-
- `storefront`: The Next.js storefront service. It connects to the Medusa service.
182
+
- `storefront`: The Next.js Starter Storefront service. It connects to the Medusa service.
183
183
- If you don't want to use the storefront, you can remove the `apps/storefront` directory and the `storefront` service from the `docker-compose.yml` file.
184
184
185
185
The `env_file` paths are relative to the project root: `apps/backend/.env`for the backend and `apps/storefront/.env` for the storefront.
@@ -284,7 +284,7 @@ Apply the same LF line endings requirement mentioned in the previous step to thi
284
284
#!/bin/sh
285
285
cd /server/apps/storefront
286
286
287
-
echo "Starting Next.js storefront development server..."
287
+
echo "Starting Next.js Starter Storefront development server..."
288
288
pnpm dev
289
289
```
290
290
</CodeTab>
@@ -293,7 +293,7 @@ pnpm dev
293
293
#!/bin/sh
294
294
cd /server/apps/storefront
295
295
296
-
echo "Starting Next.js storefront development server..."
296
+
echo "Starting Next.js Starter Storefront development server..."
297
297
yarn dev
298
298
```
299
299
</CodeTab>
@@ -302,7 +302,7 @@ yarn dev
302
302
#!/bin/sh
303
303
cd /server/apps/storefront
304
304
305
-
echo "Starting Next.js storefront development server..."
305
+
echo "Starting Next.js Starter Storefront development server..."
Copy file name to clipboardExpand all lines: www/apps/resources/app/create-medusa-app/page.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ export const metadata = {
15
15
16
16
# {metadata.title}
17
17
18
-
The `create-medusa-app` CLI tool simplifies the process of creating a new Medusa project. It creates a monorepo containing your Medusa backend application and, optionally, a Next.js storefront. It also allows you to setup a [Medusa plugin project](#create-a-medusa-plugin-project).
18
+
The `create-medusa-app` CLI tool simplifies the process of creating a new Medusa project. It creates a monorepo containing your Medusa backend application and, optionally, a Next.js Starter Storefront. It also allows you to setup a [Medusa plugin project](#create-a-medusa-plugin-project).
19
19
20
20
<Prerequisitesitems={[
21
21
{
@@ -339,15 +339,15 @@ my-medusa-store/
339
339
│ │ ├── src/
340
340
│ │ ├── package.json
341
341
│ │ └── medusa-config.ts
342
-
│ └── storefront/ # Next.js storefront (if --with-nextjs-starter is used)
0 commit comments