7 lines
64 B
Bash
7 lines
64 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
# Start server
|
||
|
|
echo "Starting server"
|
||
|
|
npm run serve
|
||
|
|
|