17 lines
290 B
Python
17 lines
290 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Configuation settings for Aberrant.
|
|
"""
|
|
rtorrents = [
|
|
'scgi://localhost:5000',
|
|
'scgi://localhost:5001',
|
|
]
|
|
|
|
prefix = '/aberrant'
|
|
buckler = {
|
|
'url': "http://192.168.1.100:5400/buckler",
|
|
'app_id': 1,
|
|
'app_key': """password""",
|
|
'login_url': "/buckler/login",
|
|
}
|