1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 05:09:42 +02:00
documize/build.sh

70 lines
2.7 KiB
Bash
Raw Normal View History

2016-07-20 15:58:37 +01:00
#! /bin/bash
# ember s apiHost=https://demo1.dev:5001
# go run edition/community.go -port=5001 -forcesslport=5002 -cert selfcert/cert.pem -key selfcert/key.pem -salt=tsu3Acndky8cdTNx3
2016-07-20 15:58:37 +01:00
NOW=$(date)
echo "Build process started $NOW"
echo "Building Ember assets..."
2017-07-19 14:48:33 +01:00
cd gui
2019-01-07 14:43:56 +00:00
ember build ---environment=production --output-path dist-prod --suppress-sizes true
cd ..
2016-07-20 15:58:37 +01:00
echo "Copying Ember assets..."
rm -rf embed/bindata/public
mkdir -p embed/bindata/public
2017-07-19 14:48:33 +01:00
cp -r gui/dist-prod/assets embed/bindata/public
cp -r gui/dist-prod/codemirror embed/bindata/public/codemirror
2019-01-07 14:43:56 +00:00
cp -r gui/dist-prod/prism embed/bindata/public/prism
2017-07-19 14:48:33 +01:00
cp -r gui/dist-prod/sections embed/bindata/public/sections
2019-01-07 14:43:56 +00:00
cp -r gui/dist-prod/tinymce embed/bindata/public/tinymce
2019-04-19 15:09:12 +01:00
cp -r gui/dist-prod/pdfjs embed/bindata/public/pdfjs
2017-07-19 14:48:33 +01:00
cp gui/dist-prod/*.* embed/bindata
cp gui/dist-prod/favicon.ico embed/bindata/public
2017-08-08 11:24:21 +01:00
cp gui/dist-prod/manifest.json embed/bindata/public
2019-01-07 14:43:56 +00:00
rm -rf embed/bindata/mail
mkdir -p embed/bindata/mail
2017-08-02 15:26:31 +01:00
cp domain/mail/*.html embed/bindata/mail
cp core/database/templates/*.html embed/bindata
2019-01-07 14:43:56 +00:00
rm -rf embed/bindata/scripts
mkdir -p embed/bindata/scripts
mkdir -p embed/bindata/scripts/mysql
mkdir -p embed/bindata/scripts/postgresql
mkdir -p embed/bindata/scripts/sqlserver
cp -r core/database/scripts/mysql/*.sql embed/bindata/scripts/mysql
cp -r core/database/scripts/postgresql/*.sql embed/bindata/scripts/postgresql
cp -r core/database/scripts/sqlserver/*.sql embed/bindata/scripts/sqlserver
2016-07-20 15:58:37 +01:00
rm -rf embed/bindata/onboard
mkdir -p embed/bindata/onboard
cp -r domain/onboard/*.json embed/bindata/onboard
2016-07-20 15:58:37 +01:00
echo "Generating in-memory static assets..."
2018-02-07 19:16:23 +00:00
# go get -u github.com/jteeuwen/go-bindata/...
# go get -u github.com/elazarl/go-bindata-assetfs/...
cd embed
2016-07-20 15:58:37 +01:00
go generate
cd ..
echo "Compiling for Linux..."
env GOOS=linux GOARCH=amd64 go build -mod=vendor -trimpath -o bin/documize-community-linux-amd64 ./edition/community.go
echo "Compiling for macOS..."
env GOOS=darwin GOARCH=amd64 go build -mod=vendor -trimpath -o bin/documize-community-darwin-amd64 ./edition/community.go
echo "Compiling for Windows..."
env GOOS=windows GOARCH=amd64 go build -mod=vendor -trimpath -o bin/documize-community-windows-amd64.exe ./edition/community.go
echo "Compiling for ARM..."
env GOOS=linux GOARCH=arm go build -mod=vendor -trimpath -o bin/documize-community-linux-arm ./edition/community.go
echo "Compiling for ARM64..."
env GOOS=linux GOARCH=arm64 go build -mod=vendor -trimpath -o bin/documize-community-linux-arm64 ./edition/community.go
2016-07-20 15:58:37 +01:00
echo "Finished."
# CGO_ENABLED=0 GOOS=linux go build -a -ldflags="-s -w" -installsuffix cgo
# go build -ldflags '-d -s -w' -a -tags netgo -installsuffix netgo test.go
2018-05-02 14:52:23 +01:00
# ldd test
2019-09-05 10:37:40 +01:00
# https://stackoverflow.com/questions/55664630/how-do-i-migrate-from-dep-to-go-modules