BankBot-AI / setup.sh
mohsin-devs's picture
Deploy to HF
a282d4b
raw
history blame contribute delete
457 Bytes
#!/bin/bash
# setup.sh
echo "Setting up BankBot AI Development Environment..."
# Create .env if it doesn't exist
if [ ! -f .env ]; then
echo "Creating .env from .env.example..."
cp .env.example .env
echo "Please update .env with your OPENAI_API_KEY before running the app."
fi
# Build containers and install dependencies
echo "Building Docker containers..."
docker-compose build
echo "Setup complete! Run ./run.sh to start the application."