init
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
# AI Review Frontend Start Script
|
||||
|
||||
echo "🚀 Starting AI Review Frontend..."
|
||||
|
||||
# Check if node_modules exists
|
||||
if [ ! -d "node_modules" ]; then
|
||||
echo "📦 Installing dependencies..."
|
||||
npm install
|
||||
fi
|
||||
|
||||
# Start dev server
|
||||
echo "✅ Starting frontend on http://localhost:5173"
|
||||
echo ""
|
||||
npm run dev
|
||||
|
||||
Reference in New Issue
Block a user