Run app locally - Ubuntu #300
-
Hi, When I folow the frontend setup @ https://github.com/AntonioMrtz/SpotifyElectron/blob/master/docs/developer/frontend/SETUP.md, specially @
Then I ran the command below:
and ran
Then I launched the browser with the URL as
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @chandu :) . Npm start errorsIn my local machine I'm also getting the same Sandbox errorWith the AppImage bundled for production sometimes we get errors if not using DevelopmentI do usually develop using the Electron window instead of the browser instance. Trying to call OS methods that Electron provides using the web version makes the app crash. Ex: clipboard, back/forward navigation etc. Electron development window has React extension and allows the dev to use developer tools as if being in the browser. In my machine I run Ubuntu 24.04 and the Electron window opens. Is this window being displayed in your system? Frontend languageRight now frontend is only available in spanish. I'm working on localization with Let me know if you have issues that prevent you from developing/using production app :). If the warning/errors you're getting let you use and develop normally we're fine with that as they normally come from the Electron library itself |
Beta Was this translation helpful? Give feedback.
-
Thanks @AntonioMrtz , I have noticed that the error I have
is only occuring when I run the When I change the `` from What are your thoughts on changing the |
Beta Was this translation helpful? Give feedback.
Hi @chandu :) .
Npm start errors
In my local machine I'm also getting the same
<i> [webpack-dev-server] 404s will fallback to '/index.html'
and sometimes thefavicon
one too. I couldn't manage to make this errors to not show on development mode but they don't really have an impact on the application so I left them untouched.Sandbox error
With the AppImage bundled for production sometimes we get errors if not using
--no-sandbox
. There's a guide on installation docs that compiles some errors when working with AppImages. For development I saw in some Electron Github issues that said running thechmod
commands is necessary for correct app behaviour.Development
I do usually develop using the…