Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mempko/firestr
The Grass Computing Platform
https://github.com/mempko/firestr
chat-application collaboration cpp cpp11 decentralized grass lua p2p secure-by-default voice-chat
Last synced: 1 day ago
JSON representation
The Grass Computing Platform
- Host: GitHub
- URL: https://github.com/mempko/firestr
- Owner: mempko
- License: gpl-3.0
- Created: 2013-03-04T04:20:44.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2023-05-23T01:24:04.000Z (over 1 year ago)
- Last Synced: 2025-01-06T10:09:26.320Z (8 days ago)
- Topics: chat-application, collaboration, cpp, cpp11, decentralized, grass, lua, p2p, secure-by-default, voice-chat
- Language: C++
- Homepage: http://firestr.com
- Size: 4.43 MB
- Stars: 356
- Watchers: 26
- Forks: 28
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
- awesome-starred - mempko/firestr - The Grass Computing Platform (p2p)
README
[Fire★](http://www.firestr.com) (Fire Star) 0.11.1
===================================================================[![Documentation Status](https://readthedocs.org/projects/fire/badge/?version=latest)](https://readthedocs.org/projects/fire/?badge=latest)
[![firestr](https://snapcraft.io/firestr/badge.svg)](https://snapcraft.io/firestr)**The Grass Computing Platform**
Fire★ is a platform for creating and sharing P2P software.
This is not cloud software, but grass software.
You can touch it and shape it.Fire★ provides a built in application editor where you can program in
real time with others. Apps are written in the Lua programming language
using an API designed for writing P2P applications.Sharing an application with another is as simple as using it in a conversation.
They can install it on their system with one click and use it in their own conversations.
Any program you get you can open in the application editor to modify and share.The hard part of setting up a P2P connection (NAT transversal, UDP hole punching, etc)
is done for you so you can concentrate on building applications that work together
without a central server.All communication is encrypted between peers to provide a safe environment and
no communication is routed through a server.WARNING
===================================================================The software is in development. The security of the software has
not been audited so use AT YOUR OWN RISK.If you are a security expert, please contribute.
The encryption used is RSA with 4k keys for handshaking and AES where
Diffie-Hellman is used to create an ephemeral key for a connection session.Organization
===================================================================Fire★ is written using C++11 and requires a fairly modern compiler.
It should work with the latest gcc, clang, and visual studio.The main directory is src. Each subdirectory is a library and
the main application is in src/firestrThe project uses CMake as the meta-build configuration.
Build Dependencies
===================================================================* gcc 6.3+
* CMake
* Qt 5
* Boost 1.54+
* Botan 1.10+
* libopus
* libsnappy
* uuid
* libssl
* libgmpBuilding Using Vagrant
===================================================================Install vagrant on your machine. Open a terminal and run:
$ vagrant up
$ vagrant ssh
$ startxfce4&If asked, password is 'vagrant'.
Open terminal in the VM and run:
$ cd /vagrant
$ mkdir build
$ cd build
$ cmake ..
$ make -j2You can then run two test instances:
$ cd src/firestr/
$ ./firestr --home test1 &
$ ./firestr --home test2 &License GPLv3
===================================================================Copyright (C) 2017 Maxim Noah Khailo
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .