Files
markdownblog/rundev.sh
2025-06-17 19:16:56 +02:00

7 lines
100 B
Bash
Executable File

#!/bin/bash
npm install
npm run build
PORT=8080 npm start &
echo "server running on port 8080"
wait