Files
turkanime-client/backend/config.py
T

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