GLLM2 / start_frontend.sh
Kashaf1's picture
Initial upload
8e0d5f0
Raw
History Blame Contribute Delete
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