Skip to content

Commit 4bfe7c5

Browse files
author
John Gemignani
committed
DO NOT MERGE - test pr
1 parent d336d6d commit 4bfe7c5

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<a href="https://age.apache.org/age-manual/master/_static/logo.png" target="_blank">
1313
</a>
1414
is a leading multi-model graph database </h3>
15-
15+
1616
</h3>
1717

1818
<h3 align="center">Graph Processing & Analytics for Relational Databases</h3>
@@ -24,7 +24,7 @@
2424

2525

2626

27-
<p align="center">
27+
<p align="center">
2828
<a href="https://github.com/apache/age/blob/master/LICENSE">
2929
<img src="https://img.shields.io/github/license/apache/age"/>
3030
</a>
@@ -119,7 +119,7 @@ sudo apt-get install build-essential libreadline-dev zlib1g-dev flex bison
119119

120120
<h2><img height="30" src="/img/installation.svg">&nbsp;&nbsp;Installation</h2>
121121

122-
Apache AGE is intended to be simple to install and run. It can be installed with Docker and other traditional ways.
122+
Apache AGE is intended to be simple to install and run. It can be installed with Docker and other traditional ways.
123123

124124
<h4><a><img width="20" src="/img/pg.svg"></a>
125125
&nbsp;Install PostgreSQL
@@ -154,16 +154,16 @@ Clone the <a href="https://github.com/apache/age">github repository</a> or downl
154154
</a>
155155
Run the pg_config utility and check the version of PostgreSQL. Currently, only PostgreSQL versions 11, 12, 13, 14, 15, 16 & 17 are supported. If you have any other version of Postgres, you will need to install PostgreSQL version 11, 12, 13, 14, 15, 16 & 17.
156156
<br>
157-
157+
158158
```bash
159159
pg_config
160160
```
161-
Run the following command in the source code directory of Apache AGE to build and install the extension.
162-
161+
Run the following command in the source code directory of Apache AGE to build and install the extension.
162+
163163
```bash
164164
make install
165165
```
166-
166+
167167
If the path to your Postgres installation is not in the PATH variable, add the path in the arguments:
168168
```bash
169169
make PG_CONFIG=/path/to/postgres/bin/pg_config install
@@ -228,14 +228,14 @@ SELECT create_graph('graph_name');
228228
To create a single vertex with label and properties, use the CREATE clause.
229229

230230
```bash
231-
SELECT *
231+
SELECT *
232232
FROM cypher('graph_name', $$
233233
CREATE (:label {property:"Node A"})
234234
$$) as (v agtype);
235235
```
236236

237237
```bash
238-
SELECT *
238+
SELECT *
239239
FROM cypher('graph_name', $$
240240
CREATE (:label {property:"Node B"})
241241
$$) as (v agtype);
@@ -244,7 +244,7 @@ $$) as (v agtype);
244244
To create an edge between two nodes and set its properties:
245245

246246
```bash
247-
SELECT *
247+
SELECT *
248248
FROM cypher('graph_name', $$
249249
MATCH (a:label), (b:label)
250250
WHERE a.property = 'Node A' AND b.property = 'Node B'
@@ -302,7 +302,7 @@ After installing AGE Extension, you may use this tool to get access to the visua
302302

303303
<h2><img height="20" src="/img/videos.png">&nbsp;&nbsp;Video Links</h2>
304304

305-
You can also get help from these videos.
305+
You can also get help from these videos.
306306

307307
- Install on [Windows](https://www.youtube.com/watch?v=ddk8VX8Hm-I&list=PLGp3huJbWNDjgwP7s99Q-9_w1vxpjNHXG)
308308
- Install on [MacOS](https://www.youtube.com/watch?v=0-qMwpDh0CA)

0 commit comments

Comments
 (0)