convai / deploy.sh
Julien Chaumond
deploy script + change server port
c5ed897
raw
history blame
179 Bytes
#!/bin/bash
git checkout **/package-lock.json
git pull
# Front
pushd front
npm i
time tsc
popd
# Grunt
pushd grunt
npm i
grunt
popd
# Server
pushd server
npm i
time tsc
popd