Update 99-run.sh

This commit is contained in:
Alexandre
2024-01-31 11:45:43 +01:00
committed by GitHub
parent 9af427e5fe
commit 790ee5d3f4

View File

@@ -29,25 +29,6 @@ chmod 777 "$PGDATA"
# Permissions
chmod -R 777 "$CONFIG_HOME"
#####################
# Prepare vector.rs #
#####################
# Set variables for vector.rs
DB_PORT=5432
DB_HOSTNAME=localhost
DB_PASSWORD="$(bashio::config 'POSTGRES_PASSWORD')"
DB_USERNAME=postgres
if bashio::config.has_value "POSTGRES_USER"; then POSTGRES_USER="$(bashio::config "POSTGRES_USER")"; else POSTGRES_USER=postgres; fi
export DB_PORT
export DB_HOSTNAME
export DB_USERNAME
export DB_PASSWORD
echo "DROP EXTENSION IF EXISTS vectors;
CREATE EXTENSION vectors;
\q"> setup_postgres.sql
##############
# Launch App #
##############