add build start scripts
This commit is contained in:
16
start.sh
Executable file
16
start.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
|
||||
# VEDA Website - Development Server
|
||||
# This script starts the development server with hot reload
|
||||
|
||||
echo "🚀 Starting VEDA Website Development Server..."
|
||||
echo "=============================================="
|
||||
|
||||
# Check if node_modules exists
|
||||
if [ ! -d "node_modules" ]; then
|
||||
echo "❌ Dependencies not installed. Please run './install.sh' first."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Start the development server
|
||||
pnpm run dev -p 3011
|
Reference in New Issue
Block a user