forked from custompbx/custompbx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
58 lines (45 loc) · 1.69 KB
/
makefile
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
web_path=src/cweb-app
go_path=src/custompbx
user:=$(shell whoami)
os:=$(shell expr substr $(shell uname -s) 1 5)
go_bindata:=$(shell whereis go-bindata)
go_app:=go
ifneq ($(wildcard /usr/local/go/bin),)
go_app:=/usr/local/go/bin/go
endif
.PHONY: install show install-dep build dep-front dep-back front back front-serve install-node install-golang
install: install-dep build
show:
@ echo Timestamp: $(shell date)
@ echo Node Version: $(shell node -v)
@ echo Npm Version: $(shell npm -v)
@ echo os: $(os)
@ echo user: $(user)
@ echo go_bindata: $(go_bindata)
install-dep: dep-front dep-back
@ echo install-dep started at: $(shell date)
dep-front:
@ apt-get -y update
@ apt-get -y install go-bindata
@ cd $(web_path) && npm install
dep-back:
@ cd $(go_path) && $(go_app) mod tidy
build: front back
@ echo build started at: $(shell date)
front:
@ cd $(web_path) && npm run build --omit=dev
@ cd $(web_path) && go-bindata -pkg cweb -prefix dist/cweb-app -o ../custompbx/cweb/cweb.go dist/cweb-app/...
back:
@ cd $(go_path) && export CGO_ENABLED=0 && $(go_app) build -ldflags="-s -w" -o ../../bin/cpbx ./
@ echo build finished at: $(shell date)
front-serve:
@ [ "${WS_BACKGROUND_OVERRIDE}" ] || ( echo ">> WS_BACKGROUND_OVERRIDE is not set (syntax wss://HOST:PORT/ws) " )
@ cd $(web_path) && echo "export function getWs() { return '${WS_BACKGROUND_OVERRIDE}'; }" > env.js
@ cd $(web_path) && npm start
install-node:
@ apt-get -y install curl
@ curl -fsSL https://deb.nodesource.com/setup_current.x | sudo -E bash -
@ apt-get -y install nodejs
install-golang:
wget https://dl.google.com/go/go1.19.2.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.19.2.linux-amd64.tar.gz