We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Postgres has standard names for environment variables to specify a connection.
https://www.postgresql.org/docs/current/static/libpq-envars.html
This is used by libpq, the command line utilities createdb, psql and even psycopg2. I think marabunta should use those instead of MARABUNTA_XXX.
libpq
createdb
psql
psycopg2
MARABUNTA_XXX
Otherwise we could find ourselves typing scripts like
MARABUNTA_DB=${PGDATABASE} MARABUNTA_USER=${PGUSER} [...] marabunta
And so on. Also, it makes sense because those are parameters for PostgreSQL, not for marabunta.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Postgres has standard names for environment variables to specify a connection.
https://www.postgresql.org/docs/current/static/libpq-envars.html
This is used by
libpq
, the command line utilitiescreatedb
,psql
and evenpsycopg2
. I think marabunta should use those instead ofMARABUNTA_XXX
.Otherwise we could find ourselves typing scripts like
And so on. Also, it makes sense because those are parameters for PostgreSQL, not for marabunta.
The text was updated successfully, but these errors were encountered: