From e149881daaea52551e81f2daeedd7dbb37acb915 Mon Sep 17 00:00:00 2001 From: Edzell Date: Wed, 20 Apr 2022 19:56:29 +0200 Subject: build.sh --- cmd/mt-multiserver-proxy/build.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 cmd/mt-multiserver-proxy/build.sh (limited to 'cmd/mt-multiserver-proxy') diff --git a/cmd/mt-multiserver-proxy/build.sh b/cmd/mt-multiserver-proxy/build.sh new file mode 100755 index 0000000..c0f039a --- /dev/null +++ b/cmd/mt-multiserver-proxy/build.sh @@ -0,0 +1,4 @@ +cd ../.. +go build . +cd cmd/mt-multiserver-proxy +go build . -- cgit v1.2.3 From 1f46d8d02f05603da2fbb26365b284d8c0423358 Mon Sep 17 00:00:00 2001 From: Edzell Date: Wed, 20 Apr 2022 19:58:04 +0200 Subject: gitignore --- cmd/mt-multiserver-proxy/.gitignore | 4 ++++ cmd/mt-multiserver-proxy/config.json | 12 ++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 cmd/mt-multiserver-proxy/.gitignore create mode 100644 cmd/mt-multiserver-proxy/config.json (limited to 'cmd/mt-multiserver-proxy') diff --git a/cmd/mt-multiserver-proxy/.gitignore b/cmd/mt-multiserver-proxy/.gitignore new file mode 100644 index 0000000..cdd6352 --- /dev/null +++ b/cmd/mt-multiserver-proxy/.gitignore @@ -0,0 +1,4 @@ +config.json +cache +latest.log +auth diff --git a/cmd/mt-multiserver-proxy/config.json b/cmd/mt-multiserver-proxy/config.json new file mode 100644 index 0000000..fd26962 --- /dev/null +++ b/cmd/mt-multiserver-proxy/config.json @@ -0,0 +1,12 @@ +{ + "Servers": [ + { + "Name": "default_server", + "Addr": "192.168.1.104:30001" + }, + { + "Name": "some_other_server", + "Addr": "192.168.1.104:30002" + } + ] +} -- cgit v1.2.3 From 9d5ed877255a2e71e62dacbd3eb082b725cf44ee Mon Sep 17 00:00:00 2001 From: Riley <49880817+DerZombiiie@users.noreply.github.com> Date: Thu, 21 Apr 2022 11:46:19 +0200 Subject: Delete config.json --- cmd/mt-multiserver-proxy/config.json | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 cmd/mt-multiserver-proxy/config.json (limited to 'cmd/mt-multiserver-proxy') diff --git a/cmd/mt-multiserver-proxy/config.json b/cmd/mt-multiserver-proxy/config.json deleted file mode 100644 index fd26962..0000000 --- a/cmd/mt-multiserver-proxy/config.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "Servers": [ - { - "Name": "default_server", - "Addr": "192.168.1.104:30001" - }, - { - "Name": "some_other_server", - "Addr": "192.168.1.104:30002" - } - ] -} -- cgit v1.2.3 From d3fb7dee3c1788e3eede83381cc41bcdc1adbb40 Mon Sep 17 00:00:00 2001 From: Riley <49880817+DerZombiiie@users.noreply.github.com> Date: Thu, 21 Apr 2022 11:46:31 +0200 Subject: Update build.sh --- cmd/mt-multiserver-proxy/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd/mt-multiserver-proxy') diff --git a/cmd/mt-multiserver-proxy/build.sh b/cmd/mt-multiserver-proxy/build.sh index c0f039a..dd49510 100755 --- a/cmd/mt-multiserver-proxy/build.sh +++ b/cmd/mt-multiserver-proxy/build.sh @@ -1,4 +1,4 @@ cd ../.. -go build . +go build cd cmd/mt-multiserver-proxy -go build . +go build -- cgit v1.2.3 From 4914dea7368600bc364026bb42410b7306396685 Mon Sep 17 00:00:00 2001 From: Riley <49880817+DerZombiiie@users.noreply.github.com> Date: Thu, 21 Apr 2022 11:48:18 +0200 Subject: Update .gitignore --- cmd/mt-multiserver-proxy/.gitignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cmd/mt-multiserver-proxy') diff --git a/cmd/mt-multiserver-proxy/.gitignore b/cmd/mt-multiserver-proxy/.gitignore index cdd6352..ef1a813 100644 --- a/cmd/mt-multiserver-proxy/.gitignore +++ b/cmd/mt-multiserver-proxy/.gitignore @@ -1,4 +1,4 @@ config.json -cache -latest.log -auth +cache/ +*.log +auth/ -- cgit v1.2.3