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: docs/installation.md
+21-9Lines changed: 21 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,25 @@
1
1
# Installation
2
2
3
-
pgEdge Document Loader is open-source and licensed with the [PostgreSQL license](LICENCE.md). You can download pgEdge Document Loader source code from the [pgEdge repository](https://github.com/pgEdge/pgedge-docloader).
3
+
pgEdge Document Loader loads documents into a Postgres database in Markdown
@@ -24,7 +31,8 @@ Then, use `make` to ensure that your Go installation is configured properly:
24
31
make deps
25
32
```
26
33
27
-
Alternatively, you can use the following command to ensure that Go is installed:
34
+
Alternatively, you can use the following command to ensure that Go is
35
+
installed:
28
36
29
37
```bash
30
38
go mod download
@@ -36,20 +44,24 @@ Then, use `make` to build the Document Loader binary:
36
44
make build
37
45
```
38
46
39
-
The `make build` command creates the `pgedge-docloader` binary in the `/bin` directory in your current directory. If you'd prefer to install the binary in `/usr/local/bin`, use the command:
47
+
The `make build` command creates the `pgedge-docloader` binary in the `/bin`
48
+
directory under your current directory. If you'd prefer to install the binary
49
+
in `/usr/local/bin`, use the command:
40
50
41
51
```bash
42
52
make install
43
53
```
44
54
45
-
To install the binary in a custom location, specify the installation path when you run the `make` command:
55
+
To install the binary in a custom location, specify the installation path
56
+
when you run the `make` command:
46
57
47
58
```bash
48
59
PREFIX=/opt/local make install
49
60
```
50
61
**Verify the Installation**
51
62
52
-
After building Document Loader, you can verify the installation worked by retrieving information about the tool:
63
+
After building Document Loader, you can verify the installation worked by
0 commit comments