Host trango and communicate with those around you without the internet!
Trango self-hosted is a calling and file sharing solution that works over LAN (local area networks). It does not need to involve the internet for calling or file sharing. Ideal for offices, hotels, houses, restaurants, and any space where people use the same Public IP address or the same WiFi network. The package comes with a discovery server and a web app which can be deployed on the local machine and can be accessed from anywhere in the network.
Trango Web can be visited at https://web.trango.io . Please note that Trango is in beta.
Note: Opensource selfhosted version is now compatible with Mobile and Desktop Apps.
The Following are the main features.
The package can be deployed on a Linux machine also to provide more robust support a docker image is available on the docker hub.
sudo apt update && sudo apt install -y libboost-all-dev libssl-dev g++ nginx python3.6 python3-pip curl
curl -sL https://deb.nodesource.com/setup_12.x -o nodesource_setup.sh && bash nodesource_setup.sh && apt install -y nodejs
pip3 install flask_restful flask_cors psutil
sudo yum -y update && sudo yum install -y boost boost-devel boost-system boost-filesystem boost-thread openssl-devel gcc-c++ nginx python3.6 python3-pip curl
curl -sL https://deb.nodesource.com/setup_12.x -o nodesource_setup.sh && bash nodesource_setup.sh && yum install -y nodejs
pip3 install flask_restful flask_cors psutil
cd /path/to/this/repo/folder/
cd app/
npm i && npm run build
python3 api.py &
cd ..
sudo cp nginx-selfsigned.crt /etc/ssl/certs/
sudo cp nginx-selfsigned.key /etc/ssl/private/
sudo cp dhparam.pem /etc/ssl/certs/
sudo cp ssl.conf /etc/nginx/conf.d/
sudo cp default /etc/nginx/sites-available/
sudo service nginx restart
sudo cd discoveryserver/src/
g++ main.cpp WebSocketMainWS.cpp WebSocketWS.cpp -I ../lib/SimpleWebSocketServer/ -lboost_system -lssl -lcrypto -lpthread -o WebSocketWS
./WebSocketWS &
Install docker on your machine and follow the following steps.
sudo docker pull tak786/trango-self-hosted
sudo docker container run -d -p 80:80 -p 443:443 --name trango tak786/trango-self-hosted
Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)Distributed under the GPL-2.0 License. See LICENSE
for more information.