Skip to content

Commit c6e6a66

Browse files
committed
vale fixes
1 parent dd969bb commit c6e6a66

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

  • www/apps
    • book/app/learn/installation/docker
    • resources/app

www/apps/book/app/learn/installation/docker/page.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ services:
143143
- medusa_network
144144
145145
# Storefront
146-
# This service runs the Next.js storefront.
146+
# This service runs the Next.js Starter Storefront
147147
storefront:
148148
build: .
149149
container_name: medusa_storefront
@@ -179,7 +179,7 @@ You define four services in this file:
179179
- `postgres`: The PostgreSQL database service that stores your Medusa application's data.
180180
- `redis`: The Redis service that stores session data.
181181
- `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.
183183
- 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.
184184

185185
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
284284
#!/bin/sh
285285
cd /server/apps/storefront
286286
287-
echo "Starting Next.js storefront development server..."
287+
echo "Starting Next.js Starter Storefront development server..."
288288
pnpm dev
289289
```
290290
</CodeTab>
@@ -293,7 +293,7 @@ pnpm dev
293293
#!/bin/sh
294294
cd /server/apps/storefront
295295
296-
echo "Starting Next.js storefront development server..."
296+
echo "Starting Next.js Starter Storefront development server..."
297297
yarn dev
298298
```
299299
</CodeTab>
@@ -302,7 +302,7 @@ yarn dev
302302
#!/bin/sh
303303
cd /server/apps/storefront
304304
305-
echo "Starting Next.js storefront development server..."
305+
echo "Starting Next.js Starter Storefront development server..."
306306
npm run dev
307307
```
308308
</CodeTab>
@@ -335,7 +335,7 @@ FROM node:20-alpine
335335
336336
WORKDIR /server
337337
338-
RUN npm install -g pnpm@10.11.1
338+
RUN npm install pnpm@10.11.1 -g
339339
340340
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml turbo.json .npmrc ./
341341
COPY apps/backend/package.json ./apps/backend/

www/apps/resources/app/commerce-modules/store-credit/concepts/page.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ Each transaction includes:
4848
- `amount`: The transaction amount in the smallest currency unit.
4949
- If `type` is `credit`, the amount is added to the balance.
5050
- If `type` is `debit`, the amount is subtracted from the balance
51-
- `reference`: The name of the table that triggered the transaction (e.g. `order`, `refund`, `promotion`, etc...)
52-
- `reference_id`: The ID of the record in the reference table that triggered the transaction (e.g. `order_123`, `refund_456`, etc...)
51+
- `reference`: The name of the table that triggered the transaction (for example, `order`, `refund`, `promotion`, etc...)
52+
- `reference_id`: The ID of the record in the reference table that triggered the transaction (for example, `order_123`, `refund_456`, etc...)
5353

5454
---
5555

www/apps/resources/app/create-medusa-app/page.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const metadata = {
1515

1616
# {metadata.title}
1717

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

2020
<Prerequisites items={[
2121
{
@@ -339,15 +339,15 @@ my-medusa-store/
339339
│ │ ├── src/
340340
│ │ ├── package.json
341341
│ │ └── medusa-config.ts
342-
│ └── storefront/ # Next.js storefront (if --with-nextjs-starter is used)
342+
│ └── storefront/ # Next.js Starter Storefront (if --with-nextjs-starter is used)
343343
│ ├── src/
344344
│ ├── package.json
345345
│ └── next.config.js
346346
├── package.json # Root package.json for workspace management
347347
└── pnpm-workspace.yaml # Workspace configuration
348348
```
349349

350-
Your Medusa backend will be located in the `apps/backend` directory, and the optional Next.js storefront in `apps/storefront`.
350+
Your Medusa backend will be located in the `apps/backend` directory, and the optional Next.js Starter Storefront in `apps/storefront`.
351351

352352
---
353353

0 commit comments

Comments
 (0)