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] 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`.