-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.sh
28 lines (21 loc) · 863 Bytes
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash
BUCKET=$1
set -e
# try to create BigQuery dataset and GCS bucket first
bq mk --dataset $BUCKET
gsutil mb gs://${BUCKET}
# OK? then carry on
gsutil defacl set public-read gs://${BUCKET}
gsutil -h "Cache-Control:no-cache" cp beacon/*.gif gs://${BUCKET}
cd tag
echo "bucket=$BUCKET" > .env
npm install
npm run build
gsutil -h "Cache-Control:public,max-age=3600" cp -Z dist/*.js gs://${BUCKET}
gsutil mb gs://${BUCKET}-logs
gsutil acl ch -g [email protected]:W gs://${BUCKET}-logs
gsutil logging set on -b gs://${BUCKET}-logs gs://${BUCKET}
cd ../ingest
bq mk --table --schema table-schema.json --time_partitioning_field dt ${BUCKET}.logs
gcloud beta functions deploy ${BUCKET}_ingestLogs --entry-point ingestLogs --runtime nodejs8 --trigger-resource gs://${BUCKET}-logs --trigger-event google.storage.object.finalize
echo "Done!"