Spaces:
Build error
Build error
File size: 457 Bytes
a282d4b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/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."
|