mirror of
https://github.com/codingCoffee/cowin-monitor.git
synced 2025-12-12 19:57:04 +00:00
9 lines
84 B
Bash
9 lines
84 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
echo "Install dependencies"
|
||
|
|
npm i
|
||
|
|
|
||
|
|
echo "Starting server"
|
||
|
|
npm run serve
|
||
|
|
|