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
+24-10Lines changed: 24 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,30 +1,39 @@
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
Then, use `make` to ensure that your Go installation is configured properly:
22
30
23
31
```bash
24
32
make deps
25
33
```
26
34
27
-
Alternatively, you can use the following command to ensure that Go is installed:
35
+
Alternatively, you can use the following command to ensure that Go is
36
+
installed:
28
37
29
38
```bash
30
39
go mod download
@@ -36,20 +45,25 @@ Then, use `make` to build the Document Loader binary:
36
45
make build
37
46
```
38
47
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:
48
+
The `make build` command creates the `pgedge-docloader` binary in the `/bin`
49
+
directory under your current directory. If you'd prefer to install the binary
50
+
in `/usr/local/bin`, use the command:
40
51
41
52
```bash
42
53
make install
43
54
```
44
55
45
-
To install the binary in a custom location, specify the installation path when you run the `make` command:
56
+
To install the binary in a custom location, specify the installation path
57
+
when you run the `make` command:
46
58
47
59
```bash
48
60
PREFIX=/opt/local make install
49
61
```
50
-
**Verify the Installation**
51
62
52
-
After building Document Loader, you can verify the installation worked by retrieving information about the tool:
63
+
## Verify the Installation
64
+
65
+
After building Document Loader, you can verify the installation worked by
0 commit comments