mirror of https://github.com/citusdata/citus.git
Merge pull request #4809 from joeljuca/readme-code-highlights
Fix incorrect language syntax on README.mdpull/4805/head
commit
69f09556fd
|
@ -59,7 +59,7 @@ You can get a fully-managed Citus cluster in minutes through the Hyperscale (Cit
|
||||||
|
|
||||||
The smallest possible Citus cluster is a single PostgreSQL node with the Citus extension, which means you can try out Citus by running a single Docker container.
|
The smallest possible Citus cluster is a single PostgreSQL node with the Citus extension, which means you can try out Citus by running a single Docker container.
|
||||||
|
|
||||||
```sql
|
```bash
|
||||||
# run PostgreSQL with Citus on port 5500
|
# run PostgreSQL with Citus on port 5500
|
||||||
docker run -d --name citus -p 5500:5432 -e POSTGRES_PASSWORD=mypassword citusdata/citus
|
docker run -d --name citus -p 5500:5432 -e POSTGRES_PASSWORD=mypassword citusdata/citus
|
||||||
|
|
||||||
|
@ -91,7 +91,7 @@ sudo yum install -y citus100_13
|
||||||
|
|
||||||
To add Citus to your local PostgreSQL database, add the following to `postgresql.conf`:
|
To add Citus to your local PostgreSQL database, add the following to `postgresql.conf`:
|
||||||
|
|
||||||
```sql
|
```
|
||||||
shared_preload_libraries = 'citus'
|
shared_preload_libraries = 'citus'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue