movie-web/public/config.js

21 lines
1.0 KiB
JavaScript
Raw Normal View History

2022-12-27 16:44:36 +01:00
window.__CONFIG__ = {
// The URL for the CORS proxy, the URL must NOT end with a slash!
// If not specified, the onboarding will not allow a "default setup". The user will have to use the extension or set up a proxy themselves
2024-03-27 22:33:33 +01:00
VITE_CORS_PROXY_URL: "https://sudo-proxy.up.railway.app",
// The READ API key to access TMDB
2024-03-27 22:33:33 +01:00
VITE_TMDB_READ_API_KEY: "eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJhZTljNGE2ZDE1ZDFiODZiNzdlMWQyYmI5ZGY0MzdmYyIsInN1YiI6IjY1YjNmMWI0NTk0Yzk0MDE2MzNkZDBjNSIsInNjb3BlcyI6WyJhcGlfcmVhZCJdLCJ2ZXJzaW9uIjoxfQ.kAX7TkbKuJkNty6IsjcCLnoENFicVZn6d6DkLQsy3p8",
// The DMCA email displayed in the footer, null to hide the DMCA link
2024-03-27 22:33:33 +01:00
VITE_DMCA_EMAIL: "dev@sudo-flix.lol",
// Whether to disable hash-based routing, leave this as false if you don't know what this is
2024-03-27 22:33:33 +01:00
VITE_NORMAL_ROUTER: true,
// The backend URL to communicate with
2024-03-27 22:33:33 +01:00
VITE_BACKEND_URL: "backend.sudo-flix.lol",
// A comma separated list of disallowed IDs in the case of a DMCA claim - in the format "series-<id>" and "movie-<id>"
2024-03-03 19:37:57 +01:00
VITE_DISALLOWED_IDS: "",
2022-12-27 16:44:36 +01:00
};