Skip to content

Commit c71ace0

Browse files
authored
docs: added Docker local installation guide (#13022)
* docs: added Docker local installation guide * fixes
1 parent bf4b6c8 commit c71ace0

File tree

10 files changed

+884
-23
lines changed

10 files changed

+884
-23
lines changed

www/apps/book/app/learn/configurations/ts-aliases/page.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ The `baseUrl` option sets the base directory to `src/admin`, and the `paths` opt
9696
Next, update the `vite` configuration in `medusa-config.ts` to include the `resolve.alias` configuration:
9797

9898
```ts title="medusa-config.ts"
99-
import path from 'path'
99+
import path from "path"
100100

101101
module.exports = defineConfig({
102102
// ...
@@ -148,7 +148,7 @@ For example, if you set the `@/*` alias to point to `./components/*`:
148148
Then, the `vite` alias configuration would be:
149149

150150
```ts title="medusa-config.ts"
151-
import path from 'path'
151+
import path from "path"
152152

153153
module.exports = defineConfig({
154154
// ...

www/apps/book/app/learn/debugging-and-testing/testing-tools/modules-tests/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ moduleIntegrationTestRunner<BlogModuleService>({
176176
moduleModels: [Post],
177177
resolve: "./src/modules/blog",
178178
injectedDependencies: {
179-
[Modules.EVENT_BUS]: new MockEventBusService()
179+
[Modules.EVENT_BUS]: new MockEventBusService(),
180180
},
181181
testSuite: ({ service }) => {
182182
describe("BlogModuleService", () => {

www/apps/book/app/learn/debugging-and-testing/testing-tools/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ module.exports = {
4141
{
4242
jsc: {
4343
parser: { syntax: "typescript", decorators: true },
44-
target: "es2021"
44+
target: "es2021",
4545
},
4646
},
4747
],

www/apps/book/app/learn/fundamentals/data-models/write-migration/page.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,10 @@ export const dataMigrationHighlights = [
128128
]
129129

130130
```ts title="src/migration-scripts/migrate-blog-data.ts" highlights={dataMigrationHighlights}
131-
import { MedusaModule } from "@medusajs/framework/modules-sdk";
132-
import { ExecArgs } from "@medusajs/framework/types";
133-
import { BLOG_MODULE } from "../modules/blog";
134-
import { createWorkflow } from "@medusajs/framework/workflows-sdk";
131+
import { MedusaModule } from "@medusajs/framework/modules-sdk"
132+
import { ExecArgs } from "@medusajs/framework/types"
133+
import { BLOG_MODULE } from "../modules/blog"
134+
import { createWorkflow } from "@medusajs/framework/workflows-sdk"
135135

136136
export default async function migrateBlogData({ container }: ExecArgs) {
137137
// Check that the blog module exists

0 commit comments

Comments
 (0)