7 lines
262 B
Python
7 lines
262 B
Python
|
|
import os
|
||
|
|
|
||
|
|
ABLETON_HOST = os.getenv("ABLETON_HOST", "127.0.0.1")
|
||
|
|
ABLETON_SEND_PORT = int(os.getenv("ABLETON_SEND_PORT", "11000"))
|
||
|
|
ABLETON_RECEIVE_PORT = int(os.getenv("ABLETON_RECEIVE_PORT", "11001"))
|
||
|
|
ABLETON_TIMEOUT = float(os.getenv("ABLETON_TIMEOUT", "5.0"))
|