Summary: jenkins scripts Test Plan: tbd Reviewers: #reviewers Subscribers: jenkins-user Differential Revision: https://hub.sealcode.org/D1081
19 lines
246 B
Bash
Executable File
19 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
docker-compose down
|
|
|
|
cp secrets.example.json secrets.json
|
|
|
|
|
|
export SEALIOUS_PORT=$PORT
|
|
SEALIOUS_BASE_URL=$(cat .base_url)
|
|
export SEALIOUS_BASE_URL
|
|
|
|
docker-compose up -d db
|
|
./npm.sh ci
|
|
./npm.sh run build:back;
|
|
|
|
rm -f log.html
|