11 lines
390 B
Bash
11 lines
390 B
Bash
#!/bin/bash
|
|
# Initial setup for development environment
|
|
|
|
echo "Setting up Crypto Trading Bot Dashboard development environment..."
|
|
python scripts/dev.py setup
|
|
|
|
echo ""
|
|
echo "Setup complete! Next steps:"
|
|
echo "1. Update .env file with your actual OKX API credentials"
|
|
echo "2. Run 'python scripts/dev.py start' to start services"
|
|
echo "3. Run 'uv run python main.py' to start the dashboard" |