Add executable permissions for shell scripts - no need to run chmod +x anymore

This commit is contained in:
2025-08-14 15:12:21 +02:00
parent e384174d81
commit dba067b09f
3 changed files with 57 additions and 0 deletions

16
start.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
# Radiant Website - Development Server
# This script starts the development server with hot reload
echo "🚀 Starting Radiant 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