mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-06 00:11:22 +00:00
9 lines
286 B
Python
9 lines
286 B
Python
import os
|
|
|
|
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)
|
|
|
|
SUPERVISOR_HTTP_URI = 'http://localhost:{}'.format(SUPERVISOR_HTTP_PORT)
|