Spaces:
Build error
Build error
| # 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." | |