8 lines
207 B
Bash
Executable file
8 lines
207 B
Bash
Executable file
#!/bin/bash
|
|
# start.sh - Script to run the React application locally
|
|
|
|
# Navigate to the directory containing this script
|
|
cd "$(dirname "$0")" || exit
|
|
|
|
echo "Starting React development server..."
|
|
npm run dev
|