Table of Contents

Treelets Documentation

This page contains the documentation of the Treelets phraseology extraction tool. The main topics covered here include:

Any issues related to Treelets should be reported to the contact[at]pelcra.pl.

Docker Installation

Treelets can be installed locally as a Docker container on all major operating systems. The installation process varies for different operating systems. The following pages explain how to install Treelets on:

Requirements

Useful Docker commands

# View instances with container id
sudo docker ps
        
# Logs
sudo docker-compose logs

# Monitoring
sudo docker stats

# Connect sql command
sudo docker exec -it {container_id} sh
psql -U treelets treelets
select * from info.config;
select version();
\q
exit
        
# Stop docker containers
sudo docker-compose stop
        
# Remove docker containers
sudo docker-compose down