Files
aitbc/apps/trade-exchange/scripts/setup_postgresql.sh
oib 9b9c5beb23 ```
chore: enhance .gitignore and remove obsolete documentation files

- Reorganize .gitignore with categorized sections for better maintainability
- Add comprehensive ignore patterns for Python, Node.js, databases, logs, and build artifacts
- Add project-specific ignore rules for coordinator, explorer, and deployment files
- Remove outdated documentation: BITCOIN-WALLET-SETUP.md, LOCAL_ASSETS_SUMMARY.md, README-CONTAINER-DEPLOYMENT.md, README-DOMAIN-DEPLOYMENT.md
```
2026-01-24 14:44:51 +01:00

38 lines
1.0 KiB
Bash

#!/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."