pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

update env stuff

Pas 8687d6da ad15d410

+7 -8
+1 -1
example.env
··· 4 4 # make sure the cors proxy url does NOT have a slash at the end 5 5 VITE_CORS_PROXY_URL=... 6 6 7 - # make sure the m3u8 proxy url does NOT have a slash at the end. THIS IS A TEMPORARY PROXY. WILL SOON BE INEGRATED INTO THE CORS PROXY 7 + # likewise 8 8 VITE_M3U8_PROXY_URL=... 9 9 10 10 # make sure the domain does NOT have a slash at the end
+4 -4
src/setup/config.ts
··· 2 2 APP_VERSION, 3 3 BACKEND_URL, 4 4 DISCORD_LINK, 5 - // GITHUB_LINK, 5 + GITHUB_LINK, 6 6 TWITTER_LINK, 7 7 } from "./constants"; 8 8 ··· 28 28 ALLOW_FEBBOX_KEY: boolean; 29 29 ALLOW_REAL_DEBRID_KEY: boolean; 30 30 SHOW_AD: boolean; 31 - AD_CONTENT_URL: string; 31 + AD_CONTENT_URL: string; // like <script src="https://umami.com/script.js"></script> 32 32 TRACK_SCRIPT: string; 33 33 BANNER_MESSAGE: string; 34 34 BANNER_ID: string; ··· 115 115 export function conf(): RuntimeConfig { 116 116 return { 117 117 APP_VERSION, 118 - GITHUB_LINK: getKey("GITHUB_LINK", ""), 118 + GITHUB_LINK: getKey("GITHUB_LINK", GITHUB_LINK), 119 119 DISCORD_LINK, 120 - TWITTER_LINK, 120 + TWITTER_LINK: getKey("TWITTER_LINK", TWITTER_LINK), 121 121 DMCA_EMAIL: getKey("DMCA_EMAIL"), 122 122 ONBOARDING_CHROME_EXTENSION_INSTALL_LINK: getKey( 123 123 "ONBOARDING_CHROME_EXTENSION_INSTALL_LINK",
+2 -3
src/setup/constants.ts
··· 1 1 export const APP_VERSION = import.meta.env.PACKAGE_VERSION; 2 2 export const DISCORD_LINK = "https://discord.gg/7z6znYgrTG"; 3 - // export const GITHUB_LINK = "https://github.com/p-stream/p-stream"; 4 - export const TWITTER_LINK = "https://twitter.com/SudoFlix"; 3 + export const GITHUB_LINK = "https://github.com/p-stream/p-stream"; 4 + export const TWITTER_LINK = ""; 5 5 export const GA_ID = import.meta.env.VITE_GA_ID; 6 6 export const BACKEND_URL = import.meta.env.VITE_BACKEND_URL; 7 - // Do it clap??