Skip to content

Commit 2657bbe

Browse files
docs: reorder installation steps to ensure proper service startup sequence
1 parent b3f8f59 commit 2657bbe

File tree

3 files changed

+21
-12
lines changed

3 files changed

+21
-12
lines changed

docs/installation/linux.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -94,22 +94,25 @@ Magick uses [Clerk](https://clerk.com/) for authentication. You'll need to set u
9494
npm run portal:up
9595
```
9696

97-
This starts PostgreSQL, Redis, and S3Mock containers.
97+
This starts PostgreSQL, Redis, and S3Mock containers. Wait a few moments for the services to be ready.
9898

99-
5. **Initialize Databases**
99+
5. **Initialize and Seed Databases**
100100

101101
```bash
102102
npm run db:init # Initialize main database
103103
npm run portal:db:init # Initialize portal database and seed templates
104104
```
105105

106-
6. **Start Backend Server**
106+
6. **Start Services**
107+
108+
Start the backend server:
107109

108110
```bash
109111
npm run dev:server
110112
```
111113

112-
7. **Start Portal Frontend**
114+
In a new terminal, start the portal frontend:
115+
113116
```bash
114117
npm run portal:dev
115118
```

docs/installation/macos.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -83,22 +83,25 @@ Magick uses [Clerk](https://clerk.com/) for authentication. You'll need to set u
8383
npm run portal:up
8484
```
8585

86-
This starts PostgreSQL, Redis, and S3Mock containers.
86+
This starts PostgreSQL, Redis, and S3Mock containers. Wait a few moments for the services to be ready.
8787

88-
5. **Initialize Databases**
88+
5. **Initialize and Seed Databases**
8989

9090
```bash
9191
npm run db:init # Initialize main database
9292
npm run portal:db:init # Initialize portal database and seed templates
9393
```
9494

95-
6. **Start Backend Server**
95+
6. **Start Services**
96+
97+
Start the backend server:
9698

9799
```bash
98100
npm run dev:server
99101
```
100102

101-
7. **Start Portal Frontend**
103+
In a new terminal, start the portal frontend:
104+
102105
```bash
103106
npm run portal:dev
104107
```

docs/installation/windows.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -86,22 +86,25 @@ Magick uses [Clerk](https://clerk.com/) for authentication. You'll need to set u
8686
npm run portal:up
8787
```
8888

89-
This starts PostgreSQL, Redis, and S3Mock containers.
89+
This starts PostgreSQL, Redis, and S3Mock containers. Wait a few moments for the services to be ready.
9090

91-
5. **Initialize Databases**
91+
5. **Initialize and Seed Databases**
9292

9393
```cmd
9494
npm run db:init # Initialize main database
9595
npm run portal:db:init # Initialize portal database and seed templates
9696
```
9797

98-
6. **Start Backend Server**
98+
6. **Start Services**
99+
100+
Start the backend server:
99101

100102
```cmd
101103
npm run dev:server
102104
```
103105

104-
7. **Start Portal Frontend**
106+
In a new terminal, start the portal frontend:
107+
105108
```cmd
106109
npm run portal:dev
107110
```

0 commit comments

Comments
 (0)