baseimage-tutorial-framework/lib/config/envvars.py

6 lines
150 B
Python
Raw Normal View History

2017-11-27 17:41:57 +00:00
import os
PUBLISHER_PORT = os.getenv('PUBLISHER_PORT', 7654)
RECEIVER_PORT = os.getenv('RECEIVER_PORT', 8765)
WEB_PORT = os.getenv('WEB_PORT', 4242)