anycoder / start_frontend.sh
akhaliq's picture
akhaliq HF Staff
new UI
b42dfef
raw
history blame
349 Bytes
#!/bin/bash
# Start the Next.js frontend
echo "Starting AnyCoder Frontend..."
echo "Frontend will be available at: http://localhost:3000"
echo ""
cd frontend
# Install dependencies if node_modules doesn't exist
if [ ! -d "node_modules" ]; then
echo "Installing dependencies..."
npm install
fi
# Start the development server
npm run dev