update (almost) all taglines and descs
[webi-installers/.git] / postgres / package.yash
1 # title: Postgres
2 # homepage: https://www.postgresql.org/
3 # tagline: |
4 #   PostgreSQL: The World's Most Advanced Open Source Relational Database.
5 # description: |
6 #   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.
7 # examples: |
8 #
9 #   Initialize a database with a password
10 #
11 #   ```bash
12 #   echo "postgres" > /tmp/pwfile
13 #   mkdir -p $HOME/.local/share/postgres/var/
14 #
15 #   initdb -D $HOME/.local/share/postgres/var/ \
16 #       --username postgres --pwfile "/tmp/pwfile" \
17 #       --auth-local=password --auth-host=password
18 #
19 #   rm /tmp/pwfile
20 #   ```
21 #
22 #   Start the postgres server
23 #
24 #   ```bash
25 #   postgres -D $HOME/.local/share/var/postgres -p 5432
26 #   ```
27 #
28 #   Connect with the psql client
29 #
30 #   ```bash
31 #   psql 'postgres://postgres:postgres@localhost:5432/postgres'
32 #   ```
33 #
34
35 END