Skip to content

Commit a299ec5

Browse files
chore(scripts): add dev-cycle.sh for local build and test
1 parent 4212382 commit a299ec5

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

scripts/dev-cycle.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
set -e
3+
4+
echo "🔧 Building local Logdash SDK..."
5+
mvn clean install -DskipTests
6+
7+
echo "🚀 Testing SpringBoot example with local snapshot..."
8+
cd examples/example-springboot
9+
mvn clean spring-boot:run -Plocal-dev
10+
11+
echo "✅ Development cycle completed!"

0 commit comments

Comments
 (0)