fix(#2425): add new stages in makefile

keep-around/b94d43885700f194c77b2df6808a62140a37e5f2
Andrei Dekterev 4 years ago
parent d48935c011
commit 4ed3b55650
  1. 30
      Makefile

@ -64,6 +64,27 @@ build-f: clean
REACT_APP_STAGE=f-staging \
npm run build
build-g: clean
REACT_APP_TYPE=ott \
REACT_APP_ENV=staging \
REACT_APP_CLIENT=instat \
REACT_APP_STAGE=g-staging \
npm run build
build-h: clean
REACT_APP_TYPE=ott \
REACT_APP_ENV=staging \
REACT_APP_CLIENT=instat \
REACT_APP_STAGE=h-staging \
npm run build
build-i: clean
REACT_APP_TYPE=ott \
REACT_APP_ENV=staging \
REACT_APP_CLIENT=instat \
REACT_APP_STAGE=i-staging \
npm run build
auth-build:
rm -rf build_auth
@ -148,6 +169,15 @@ e-stage: build-e
f-stage: build-f
rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@10.0.3.8:/usr/local/www/ott-staging/f-wwwroot/
g-stage: build-f
rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@10.0.3.8:/usr/local/www/ott-staging/f-wwwroot/
h-stage: build-f
rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@10.0.3.8:/usr/local/www/ott-staging/f-wwwroot/
i-stage: build-f
rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@10.0.3.8:/usr/local/www/ott-staging/f-wwwroot/
test:
npm test

Loading…
Cancel
Save