From 4ebe1367bfb3fde14f73365d09c22d9542dbed68 Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 12 Feb 2026 22:15:20 +0100 Subject: [PATCH] build: adding a setup script --- setup.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.sh b/setup.sh index 7e79243..64f568e 100755 --- a/setup.sh +++ b/setup.sh @@ -1,10 +1,11 @@ #!/usr/bin/env bash set -euo pipefail -DATABASE_USER="tty_dev" -DATABASE_PASS="PasswordCompliqueOuPasMdr!" -DATABASE_NAME="bot_db" -DATABASE_URL="postgres://${DATABASE_USER}:${DATABASE_PASS}@localhost:5432/${DATABASE_NAME}" +DATABASE_USER="user" +DATABASE_PASS="password" +DATABASE_NAME="database" +DATABASE_PORT="database" +DATABASE_URL="postgres://${DATABASE_USER}:${DATABASE_PASS}@localhost:${DATABASE_PORT}/${DATABASE_NAME}" function log_info() { echo -e "\033[1;34m[INFO]\033[0m $1"