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: DEVELOPMENT.md
+23-8
Original file line number
Diff line number
Diff line change
@@ -7,42 +7,57 @@ This guide will help you set up your development environment for the project.
7
7
Before you start, ensure you have the following installed:
8
8
9
9
-[Git](https://git-scm.com/downloads): For version control
10
-
- Git LFS: For managing large files within the project
10
+
-[Git LFS](https://git-lfs.com/): For managing large files within the project
11
11
-[Node.js](https://nodejs.org/en/download): For running certain project scripts (including dependency management)
12
12
-[`podman`](https://podman.io/docs/installation) or [Docker](https://www.docker.com/products/docker-desktop/): For containerization of the Vault instance and databases
13
13
- This is especially required for [integration testing](#running-tests)
14
14
15
15
## Preparing the Repository
16
16
17
-
1. Clone the `propeller` project from GitHub:
17
+
1. Make sure you have Git Large File Storage (LFS) installed beforehand:
18
+
19
+
```shell
20
+
git lfs install
21
+
git lfs fetch
22
+
```
23
+
24
+
This ensures that when cloning the repository later, large files needed by the project are cloned too.
0 commit comments