Add automatic deploy script
This commit is contained in:
parent
2c66460976
commit
aef13e1a75
14
start.sh
Normal file
14
start.sh
Normal file
@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
if ! npm i
|
||||
then
|
||||
echo "Failed to install dependencies" >&2
|
||||
exit 4
|
||||
fi
|
||||
|
||||
if ! npm run build
|
||||
then
|
||||
echo "Failed to build project" >&2
|
||||
exit 5
|
||||
fi
|
||||
|
||||
npm run start
|
Loading…
x
Reference in New Issue
Block a user