Create initial version of SourceCodeEventHandler

This commit is contained in:
Bálint Bokros
2018-01-10 16:47:25 +01:00
parent 3e14b000b1
commit 1d1cab228b
6 changed files with 103 additions and 0 deletions

View File

@ -4,5 +4,8 @@ PUBLISHER_PORT = os.getenv('PUBLISHER_PORT', 7654)
RECEIVER_PORT = os.getenv('RECEIVER_PORT', 8765)
WEB_PORT = os.getenv('WEB_PORT', 4242)
SUPERVISOR_HTTP_PORT = os.getenv('TFW_SUPERVISOR_PORT', 9001)
LOGIN_APP_PORT= os.getenv('TFW_LOGIN_APP_PORT', 6666)
SUPERVISOR_HTTP_URI = 'http://localhost:{}'.format(SUPERVISOR_HTTP_PORT)
LOGIN_APP_DIR = os.getenv('TFW_LOGIN_APP_DIR')