From 91b5b0c99f8cd881c596bafd24fb27446f12ae55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Krzy=C5=BCanowski?= <30776840+originalmk@users.noreply.github.com> Date: Wed, 17 Apr 2024 16:39:41 +0200 Subject: [PATCH 1/2] Create README.md --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..5fa27f5 --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# Archat +Simple P2P server (and client - for testing purposes only, client for end user will be written in NodeJS using Electron, soon). + +## Starting +You can use these commands to start client and/or server: + +``` +go run . client +``` +Note that server should be started **before** running client. + +``` +go run . server +``` + +For now, address of server is hardcoded in client, and server starts on `localhost:8080`. From 4aae4a9770eda81489b9c35cded129252b5ba826 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Krzy=C5=BCanowski?= <30776840+originalmk@users.noreply.github.com> Date: Wed, 17 Apr 2024 16:40:14 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5fa27f5..488da67 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Archat +# 🔀 Archat Simple P2P server (and client - for testing purposes only, client for end user will be written in NodeJS using Electron, soon). ## Starting