diff --git a/Makefile b/Makefile index 41098ea..8787293 100644 --- a/Makefile +++ b/Makefile @@ -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) . diff --git a/elasticsearch.txt b/elasticsearch.txt index df552a9..a5964bf 100644 --- a/elasticsearch.txt +++ b/elasticsearch.txt @@ -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 \ No newline at end of file