mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
352 B
8 lines
352 B
# Set database environment variables
|
|
export DB_HOST="$POSTGRESQL_HOST"
|
|
export DB_PORT="$POSTGRESQL_PORT"
|
|
export DB_PATH="$POSTGRESQL_PATH"
|
|
export DB_USERNAME="$POSTGRESQL_USERNAME"
|
|
export DB_PASSWORD="$POSTGRESQL_PASSWORD"
|
|
export DB_SCHEME="postgresql"
|
|
export DATABASE_URL="${DB_SCHEME}://${DB_USERNAME}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_PATH}" |