Skip to content

Commit c98c68c

Browse files
authored
Merge pull request #156 from FlowCI/develop
Develop
2 parents c90a4e9 + f4a6490 commit c98c68c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+23787
-1078
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ coverage
77
.yarn-cache
88
deploy.sh
99
.vscode/
10-
.run/

.run/start.run.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<component name="ProjectRunConfigurationManager">
2+
<configuration default="false" name="start" type="js.build_tools.npm" nameIsGenerated="true">
3+
<package-json value="$PROJECT_DIR$/package.json" />
4+
<command value="run" />
5+
<scripts>
6+
<script value="start" />
7+
</scripts>
8+
<node-interpreter value="project" />
9+
<package-manager value="npm" />
10+
<envs>
11+
<env name="VUE_APP_API_URL" value="http://192.168.31.173:8080" />
12+
</envs>
13+
<method v="2" />
14+
</configuration>
15+
</component>

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ CURRENT_DIR := $(shell pwd)
88
DOCKER_VOLUME := -v $(CURRENT_DIR):/ws
99
DOCKER_IMG := node:14
1010
DOCKER_RUN := docker run -it --rm -w /ws $(DOCKER_VOLUME) --network host $(DOCKER_IMG)
11-
DOCKER_BUILD := docker build -f ./Dockerfile -t flowci/web:latest -t flowci/web:$(tag) .
11+
DOCKER_BUILD := docker buildx build -f ./Dockerfile --platform linux/arm64,linux/amd64 --push -t flowci/web:latest -t flowci/web:$(tag) .
1212

1313
.PHONY: build clean image
1414

0 commit comments

Comments
 (0)