Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test pull request #2

Merged
merged 1 commit into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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