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: README.md
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,13 +41,19 @@ To begin, ensure you have network access. Then, you'll need the following:
41
41
gh repo clone IFRCGo/go-web-app # GitHub CLI
42
42
```
43
43
44
-
2. Install the dependencies:
44
+
2. Initialize submodules
45
+
46
+
```bash
47
+
git submodule update --init --recursive --remote
48
+
```
49
+
50
+
3. Install the dependencies:
45
51
46
52
```bash
47
53
pnpm install
48
54
```
49
55
50
-
3. Create a `.env` file in the `app` directory and add variables from [env.ts](https://github.com/IFRCGo/go-web-app/blob/develop/app/env.ts). Any variables marked with `.optional()` are not mandatory for setup and can be skipped.
56
+
4. Create a `.env` file in the `app` directory and add variables from [env.ts](https://github.com/IFRCGo/go-web-app/blob/develop/app/env.ts). Any variables marked with `.optional()` are not mandatory for setup and can be skipped.
51
57
52
58
```bash
53
59
cd app
@@ -61,10 +67,10 @@ To begin, ensure you have network access. Then, you'll need the following:
0 commit comments