mirror of
https://github.com/RoyalnetworkTR/turkanime-client.git
synced 2026-09-25 06:40:02 +03:00
Co-authored-by: barkeser2002 <45911502+barkeser2002@users.noreply.github.com>
15 lines
384 B
Python
15 lines
384 B
Python
"""Backend configuration"""
|
|
|
|
# LiveChart endpoints
|
|
LIVECHART_BASE_URL = "https://www.livechart.me"
|
|
LIVECHART_HEADLINES_FEED = "https://www.livechart.me/feeds/headlines"
|
|
LIVECHART_EPISODES_FEED = "https://www.livechart.me/feeds/episodes"
|
|
LIVECHART_SEARCH_ENDPOINT = "https://www.livechart.me/search"
|
|
|
|
# Request timeout
|
|
TIMEOUT = 10
|
|
|
|
# API settings
|
|
API_HOST = "0.0.0.0"
|
|
API_PORT = 8000
|