Replies: 1 comment 1 reply
-
Looking for a bit of detail about this showstopper in 24 (LTS?)… does this affect the desktop app only? Or does it also affect running the server itself to host Ente Photos on 24.04 LTS? Thanks! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I recently prepared an cloud VM for testing something in the web/desktop app. I thought I'll post the steps I followed (this is all documented elsewhere too, still posting them here in case having the specific flow described helps someone).
Create a new Ubuntu 22 instance (Ubuntu 24 currently has showstoppers, so using the previous LTS).
Install Xfce4 + xorg + xrdp to prepare for remote desktop (I needed to test something in the desktop app, which is why I needed the GUI).
Install NVM, then
nvm install 20 && corepack enable
Run desktop app
git clone https://github.com/ente-io/ente cd ente/desktop git submodule update --init --recursive yarn install yarn dev
Prepare docker to run without sudo
sudo systemctl start docker sudo usermod -aG docker $USER newgrp docker
Run server
Restart desktop app after asking it to connect to the local museum.
Create user. To view OTP
Bump up storage
That's it. I also installed emacs
apt install emacs-nox
, and I had a development environment ready.Beta Was this translation helpful? Give feedback.
All reactions