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: CONTRIBUTING.md
+19-2Lines changed: 19 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,9 @@ This document contains basic documentation for developing LangPro Annotator.
4
4
5
5
## Before you start
6
6
7
-
You need to install the following software, *unless* you will be using Docker:
7
+
This repository has a submodule that requires [git-lfs][git-lfs]. It is recommended that you install git-lfs before cloning the repository to a local disk.
8
+
9
+
You also need to install the following software, *unless* you will be using Docker:
8
10
9
11
- PostgreSQL >= 10, client, server and C libraries
10
12
- Python >= 3.8, <= 3.10
@@ -14,18 +16,33 @@ You need to install the following software, *unless* you will be using Docker:
14
16
- Node.js >= 14.20.0
15
17
- Yarn
16
18
19
+
After cloning the repository, run the following commands once in order to obtain a local copy of [langpro-container][container] and its recursive submodule [LangPro][langpro]:
20
+
21
+
```sh
22
+
git submodule init
23
+
# customize clone URL in .git/config before proceeding (if needed)
24
+
git submodule update --recursive
25
+
```
26
+
27
+
If you don't need to customize clone URLs, you can also do both steps at once with `git submodule update --init --recursive`.
0 commit comments