added build script

This commit is contained in:
2021-09-03 23:24:24 +02:00
parent 01fe676f8f
commit 53221e567a
3 changed files with 16 additions and 2 deletions

14
build.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env sh
set -e
# Build frontend
yarn --cwd s3browser-frontend run build
# copy fontend build to backend for embeding
cp -r s3browser-frontend/build s3browser-backend/internal/static
# Build backend
cd s3browser-backend
go build -o s3browser -tags prod ./cmd/s3Browser.go