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/deployment/page.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ A standard Medusa project is made up of:
13
13
- Medusa application: The Medusa server and the Medusa Admin.
14
14
- One or more storefronts
15
15
16
-

16
+

17
17
18
18
You deploy the Medusa application, with the server and admin, separately from the storefront.
19
19
@@ -25,7 +25,7 @@ You must deploy the Medusa application before the storefront, as it connects to
25
25
26
26
The Medusa application must be deployed to a hosting provider supporting Node.js server deployments, such as Railway, DigitalOcean, AWS, Heroku, etc…
27
27
28
-

28
+

29
29
30
30
Your server connects to a PostgreSQL database, Redis, and other services relevant for your setup. Most hosting providers support deploying and managing these databases along with your Medusa server (such as Railway and DigitalOcean).
Copy file name to clipboardExpand all lines: www/apps/book/app/learn/fundamentals/api-routes/middlewares/page.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ A middleware is a function executed when a request is sent to an API Route. It's
14
14
15
15
Middlewares are used to guard API routes, parse request content types other than `application/json`, manipulate request data, and more.
16
16
17
-

17
+

Copy file name to clipboardExpand all lines: www/apps/book/app/learn/fundamentals/modules/page.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ A data model represents a table in the database. You create data models using Me
44
44
45
45
You create a data model in a TypeScript or JavaScript file under the `models` directory of a module. So, to create a `Post` data model in the Blog Module, create the file `src/modules/blog/models/post.ts` with the following content:
46
46
47
-

47
+

Copy file name to clipboardExpand all lines: www/apps/book/app/learn/installation/page.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ After answering the prompts, the command installs the Medusa application in a di
45
45
46
46
If you chose to install the storefront with the Medusa application, the storefront is installed in a separate directory named `{project-name}-storefront`.
47
47
48
-

48
+

49
49
50
50
### Successful Installation Result
51
51
@@ -57,7 +57,7 @@ If you also installed the Next.js Starter Storefront, it'll be running at `http:
57
57
58
58
You can stop the servers for the Medusa application and Next.js Starter Storefront by exiting the installation command. To run the server for the Medusa application again, refer to [this section](#run-medusa-application-in-development).
59
59
60
-

60
+

Copy file name to clipboardExpand all lines: www/apps/book/app/learn/introduction/architecture/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
@@ -29,7 +29,7 @@ These layers of stack can be implemented within [plugins](../../fundamentals/plu
29
29
30
30
</Note>
31
31
32
-

32
+

33
33
34
34
---
35
35
@@ -43,7 +43,7 @@ Modules can be implemented within [plugins](../../fundamentals/plugins/page.mdx)
43
43
44
44
</Note>
45
45
46
-

46
+

47
47
48
48
---
49
49
@@ -89,4 +89,4 @@ All of the third-party services mentioned above can be replaced to help you buil
89
89
90
90
The following diagram illustrates Medusa's architecture including all its layers.
91
91
92
-

92
+

Copy file name to clipboardExpand all lines: www/apps/book/app/learn/production/worker-mode/page.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ You don't need to set up different projects for each instance. Instead, you can
21
21
22
22
This separation ensures that the server instance remains responsive to incoming requests, while the worker instance processes tasks in the background.
23
23
24
-

24
+

0 commit comments