Web mode still supported? #8820
-
|
Hello I'm trying to run FreeTube locally using Then i tried to add This makes me think this web mode may not be supported anymore So, is this mode "yarn run dev" still supported? And if not : how do you work on the project locally? Thank you 🙂 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
@rustyechelle FreeTube never supported a web mode. When you run
Additionally you can only develop and run FreeTube locally because it is a desktop app that talks directly to YouTube, there is no "FreeTube server". |
Beta Was this translation helpful? Give feedback.
-
|
Thanks ! So, the problem was that i tried to run that in a docker container, i didn't know it would open an electron window. The web server starting messages made me think it could be usable through a browser. In case someone may need it, here's what happened next : I tried to run from my system directly and it didn't work too, the electron window didn't show up. No error message Then i activated the logs in dev-runner.js The problem was the AppArmor stuff, so i've put an apparmor config in then Now, yarn run dev starts the electron app succesfully |
Beta Was this translation helpful? Give feedback.
@rustyechelle FreeTube never supported a web mode. When you run
yarn run devan Electron window will open and you should only use FreeTube through that, trying to access FreeTube stuff through your web browser is not supported so it is entirely expected that it will error.yarn run dev:webandyarn run pack:webare smoke tests for FreeTubeAndroid, to ensure we don't unintentionally break downstream builds, they are not meant to be used for normal development or for actually using FreeTube, which is also why they are extremely limited in their functionality.Additionally you can only develop and run FreeTube locally because it is a desktop app that talks directly to YouTube, there is no "F…