Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Quang nd committed Aug 29, 2024
1 parent 68f3c51 commit 1704024
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@ release:
run:
go run main.go

merge:
@powershell -Command " \
$$targetBranch = Read-Host 'Enter target branch'; \
if ($$targetBranch -eq '') { echo 'Relase target branch cannot be empty'; exit 1 } \
git checkout $$targetBranch; \
git pull; \
gh pr create; \
"

docker-build:
@echo "Building the Docker image..."
docker build -t $(DOCKER_REPO):$(VERSION) .
Expand Down
1 change: 1 addition & 0 deletions elasticsearch.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
choco install gh
docker run -p 9200:9200 -d --name elasticsearch --network elastic-net -e ELASTIC_PASSWORD=malgus123 -e "discovery.type=single-node" -e "xpack.security.http.ssl.enabled=false" -e "xpack.license.self_generated.type=trial" docker.elastic.co/elasticsearch/elasticsearch:8.15.0
go get github.com/elastic/go-elasticsearch/v8

0 comments on commit 1704024

Please sign in to comment.