mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
69c238dc95
This is for local testing. Details are in the README. [DSF-218]: https://hasurahq.atlassian.net/browse/DSF-218?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8449 GitOrigin-RevId: 758aa9600fe79ed5c2917def3c86ac185267259e
11 lines
214 B
Bash
Executable File
11 lines
214 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
# Allow all users to replicate the database.
|
|
# This is very insecure.
|
|
|
|
auth="$(postgres -C password_encryption)"
|
|
echo "host replication all all ${auth}" >> "$PGDATA/pg_hba.conf"
|