Skip to content
Snippets Groups Projects
Commit 3332b168 authored by Manuela Kuhn's avatar Manuela Kuhn
Browse files

Added start scripts

parent d7375b58
No related branches found
No related tags found
No related merge requests found
#/bin/sh
python ../ZeroMQTunnel/fileMover.py --logfilePath="/space/projects/Live_Viewer/logs" --bindingIpForSocket="127.0.0.1" --logfileName="fileMover.log" --parallelDataStreams 1 --dataStreamIp="127.0.0.1" --dataStreamPort="6061" --verbose
import os
import sys
import time
from threading import Thread
### Get configured paths and files
LIVEVIEWER_PATH = os.path.dirname ( os.path.dirname ( os.path.realpath ( __file__ ) ) )
sys.path.append ( LIVEVIEWER_PATH )
from LiveViewer import LiveView
lv = LiveView()
lv.start()
time.sleep(5)
lv.stop()
#/bin/sh
python ../ZeroMQTunnel/receiver.py --outputDir /space/projects/Live_Viewer/zmq_target --tcpPortDataStream 6061 --bindingIpForDataStream 127.0.0.1 --logfile ../logs/receiver.log --verbose
#/bin/sh
python ../ZeroMQTunnel/watcher_lsyncd.py --watchFolder /space/projects/Live_Viewer/source/ --logfilePath /space/projects/Live_Viewer/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment