add postgres older mac versions back
[webi-installers/.git] / postgres / package.yash
1 # title: Postgres
2 # homepage: https://www.postgresql.org/
3 # tagline: PostgreSQL: The World's Most Advanced Open Source Relational Database
4 # description: |
5 #   Postgres is the all-in-one database for beginners and experts alike. It handles SQL, 'NoSQL', JSON, HSTORE, Full-Text Search, Messages Queues and more. Best bang for buck.
6 # examples: |
7 #
8 #   Initialize a database with a password
9 #
10 #   ```bash
11 #   echo "postgres" > /tmp/pwfile
12 #   mkdir -p $HOME/.local/share/postgres/var/
13 #
14 #   initdb -D $HOME/.local/share/postgres/var/ \
15 #       --username postgres --pwfile "/tmp/pwfile" \
16 #       --auth-local=password --auth-host=password
17 #
18 #   rm /tmp/pwfile
19 #   ```
20 #
21 #   Start the postgres server
22 #
23 #   ```bash
24 #   postgres -D $HOME/.local/share/var/postgres -p 5432
25 #   ```
26 #
27 #   Connect with the psql client
28 #
29 #   ```bash
30 #   psql 'postgres://postgres:postgres@localhost:5432/postgres'
31 #   ```
32 #
33
34 END