Files
aitbc/apps/exchange/scripts/setup_postgresql.sh
oib 15427c96c0 chore: update file permissions to executable across repository
- Change file mode from 644 to 755 for all project files
- Add chain_id parameter to get_balance RPC endpoint with default "ait-devnet"
- Rename Miner.extra_meta_data to extra_metadata for consistency
2026-03-06 22:17:54 +01:00

38 lines
1.0 KiB
Bash
Executable File

#!/bin/bash
echo "=== PostgreSQL Setup for AITBC Exchange ==="
echo ""
# Install PostgreSQL if not already installed
if ! command -v psql &> /dev/null; then
echo "Installing PostgreSQL..."
sudo apt-get update
sudo apt-get install -y postgresql postgresql-contrib
fi
# Start PostgreSQL service
sudo systemctl start postgresql
sudo systemctl enable postgresql
# Create database and user
echo "Creating database and user..."
sudo -u postgres psql -c "CREATE DATABASE aitbc_exchange;"
sudo -u postgres psql -c "CREATE USER aitbc_user WITH PASSWORD 'aitbc_password';"
sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE aitbc_exchange TO aitbc_user;"
# Test connection
echo "Testing connection..."
sudo -u postgres psql -c "\l" | grep aitbc_exchange
echo ""
echo "✅ PostgreSQL setup complete!"
echo ""
echo "Connection details:"
echo " Host: localhost"
echo " Port: 5432"
echo " Database: aitbc_exchange"
echo " User: aitbc_user"
echo " Password: aitbc_password"
echo ""
echo "You can now run the migration script."