From 43ab1ab3dad124916d187b39c19c737752e6b76c Mon Sep 17 00:00:00 2001 From: nodemixaholic Date: Thu, 7 Mar 2024 19:49:39 +0000 Subject: [PATCH] Update 'README.md' --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 88b97de..ea567f4 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # Harmony Chat Backend API Documentation/Whitepaper +## UPDATE: HARMONY CHAT IS NOW MAYASPACE V2 + + ## About Harmony Chat is meant as a simple *discord alternative. Meaning, we are not going to REPLACE discord or replicate it's API, however we will have easay to understand endpoints to make transitioning easy. The API will also be using open technologies such as GUN.js to make our systems decentralized. API server-side will be written using express.js The express.js port will be, by default in the .env.example, 7664, but is changable via .env variable. Servers used as GUN.js distrobution endpoints in the GUN.js initalization will also be in the .env variable. For example, if the array of GUN.js distrobution endpoints is ```['http://localhost:8765/gun', 'https://gun-manhattan.herokuapp.com/gun']``` in the .env (which will be the deafault in .env.example), the running code will be ```let gun = Gun(['http://localhost:8765/gun', 'https://gun-manhattan.herokuapp.com/gun']);``` for starting gun after we require all dependencies*