21 lines
345 B
Python
21 lines
345 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Project configuration file.
|
|
"""
|
|
|
|
REDIS_HOST = 'localhost'
|
|
REDIS_PORT = 6379
|
|
REDIS_SOCKET = '/var/run/redis/redis.sock'
|
|
|
|
FEEDS = [
|
|
"http://website1.com/rss",
|
|
"http://website2.com/rss",
|
|
]
|
|
|
|
buckler = {
|
|
'url': "http://127.0.0.1:5400/buckler",
|
|
'app_id': 1,
|
|
'app_key': """password""",
|
|
'login_url': "/buckler/login",
|
|
}
|