chore(build-system): add start and start:server scripts (#2495)

pull/2502/head
Chaim Lev-Ari 2018-11-26 23:05:13 +02:00 committed by Anthony Lapenna
parent b809177147
commit 34b886d690
1 changed files with 5 additions and 4 deletions

View File

@ -21,10 +21,11 @@
],
"scripts": {
"grunt": "grunt",
"dev": "yarn grunt run-dev",
"clean-all": "yarn grunt clean:all",
"build": "yarn grunt build",
"build-offline": "cd ./api/cmd/portainer && CGO_ENABLED=0 go build -a --installsuffix cgo --ldflags '-s' && mv -b portainer ../../../dist/portainer-linux-amd64"
"start": "grunt run-dev",
"start:server": "yarn build:server:offline && grunt shell:run:amd64",
"clean:all": "grunt clean:all",
"build": "grunt build",
"build:server:offline": "cd ./api/cmd/portainer && CGO_ENABLED=0 go build -a --installsuffix cgo --ldflags '-s' && mv -f portainer ../../../dist/portainer-linux-amd64"
},
"engines": {
"node": ">= 0.8.4"