bac_monitoring_system/params.py

12 lines
338 B
Python
Raw Normal View History

2018-04-24 10:37:00 -04:00
#!/usr/bin/env python3
# Things used to establish a connection with the RMQ Server
rmq_params = {'vhost': 'my_vhost',
'username': 'user',
'password': 'pass',
'exchange': 'my_exchange',
'order_queue': 'my_order_queue'}
2018-04-24 12:48:01 -04:00
socket_params = {'size': 1024,
'port': 8080}