crabfit/crabfit-frontend/deploy.sh
2021-02-27 00:52:20 +11:00

20 lines
251 B
Bash

#!/usr/bin/env bash
yarn build
cd build
cat > app.yaml << EOF
runtime: nodejs12
handlers:
- url: /(.*\..+)$
static_files: \1
upload: (.*\..+)$
- url: /.*
static_files: index.html
upload: index.html
EOF
gcloud app deploy --project=crabfit