Welcome to the FreeTakServer (FTS) git repository.
FTS is a Python3 implementation of the TAK Server for devices like CivTAK , WinTAK and ITAK, it is cross-platform and is only dependent on python stdlib libraries. We use the Flask framework for web services. it's free and open source (released under the Eclipse Public License).
FTS allows you to connect ATAK clients to share geo information, to chat with all the connected clients, exchange files and more. It intends to support all the major use cases of the original TAK server.
This code is currently in BETA STAGE Check out our roadmap @ FreeTakServer#25 to see what is planned If you have any issues don't hesitate to bring it up https://github.com/Tapawingo/FreeTakServer/issues, as TAKFreeServer is still in development.
the FTS team is working daily on the development of a open and free solution. We plan to do more that simply replicate the functionalities of the legacy TAK server, our road map includes integration with open source systems like LORA's Meshtastic, porting it to Android, having an open API and much more.
We are doing it for free because we believe that donating personal time to a cause its a endeavour that is worthy per-se, However, a part time, we are also spending our own money to:
- Maintain a Public server and a test server
- Investing in different technologies for R&D
if you feel that FTS is useful to you and you can donate in those challenging times please consider to send you contribution here: DONATE
You can also support the project by buying one of our t-shirts
NOTE: not a big fan of Paypal, but that is the easier way I found for an initial attempt. We may go to some more ethical system in future.
we support a [public instance}(https://www.reddit.com/r/ATAK/wiki/index/freetakserver) of FTS.
- download the configuration {here}(https://drive.google.com/open?id=1IK1LfPN13EWikHaMyOuDDwIerNGz-Wl)
- use the Import manager in ATAK to import the configuration
to discuss with the developer team Use the reddit server https://www.reddit.com/r/ATAK/ and the Discord chat https://discordapp.com/invite/XEPyhHA
TAKFreeServer uses a MVC pattern, the concept of a COT is described in a set of Domain classes, generated from the UML model using a Model Driven Architecture approach. The target architecture supports also the ability to implement "plugins", thanks to a listener, that is decouple from the main server
under docs, you can find various documents including an UMl model of the model classes involved in a COT event.
- Python 3.6 (or better)
- Install Python3
sudo apt update && sudo apt install python3 && sudo apt install pip3` (Ubuntu)```
Since version 0.8, FTS supports Pip installation, manual installation can be done with some modifications of the import paths, however we don't support it
pip install FreeTAKServer
Optional: check if installation is correctly executed
pip check FreeTakServer
note under windows it's installed under
C:\Users\user.name\AppData\Local\Programs\Python\PythonXX\Lib\site-packages
sudo python3 -m FreeTAKServer.controllers.Orchestrator -IP (yourIP)
this will start the server with Port 8087 and API port 8080 on the IP defined in [yourIP] to change that you can use
sudo python -m FreeTAKServer.controllers.Orchestrator -CoTPort 8099 -IP 192.127.1.1 -APIPort 9999
run the above command with
-h
to get a list of other supported commands
sudo nohup python3 -m FreeTAKServer.controllers.Orchestrator -IP (yourIP) &
go to the start menu and type cmd to start a command prompt open a console with admin rights
python3 -m FreeTAKServer.controllers.Orchestrator -IP (yourIP)
if, trying to start FTS you get an error 'package not found'
'package not found'
navigate to the physical location where the controllers are installed and start the server from there
if you already installed FTS with pip you can use
pip install FreeTAKServer --upgrade
- TakFreeServer
- Controllers: Contains all the business Logic
- Models: Contains all the COT object model
- TAKLinuxService: a demon for linux OS
- TakWinService: a service for the windows OS
- Docs: Usefull documentation regarding COTS and different logs to understand how those are implemented
- Model: a UML model in Sparx EnterpriseArchitect format (see https://sparxsystems.com/products/ea/trial/request.html).
- Old: Legacy versions