It works baby, seems like timing could be improved or something, but it freakin works

This commit is contained in:
Nate Anderson
2025-06-18 20:59:24 -06:00
parent b68614257d
commit 0745a4eb75
50 changed files with 7679 additions and 20 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/bin/bash
set -e
echo "Starting development environment for MumBullet"
# Check if Docker is running
if ! docker info > /dev/null 2>&1; then
echo "Error: Docker is not running. Please start Docker and try again."
exit 1
fi
# Start Docker Compose services
cd /home/nate/source/non-work/mumbullet
docker-compose up -d
echo "Development environment started. You can now run the bot with:"
echo "dart run bin/mumbullet.dart --config test/fixtures/test_config.json"
echo ""
echo "To stop the environment, run: docker-compose down"