ente/desktop
2024-03-01 12:36:35 +05:30
..
.github Move into desktop/ 2024-03-01 12:36:35 +05:30
.husky Move into desktop/ 2024-03-01 12:36:35 +05:30
build Move into desktop/ 2024-03-01 12:36:35 +05:30
src Move into desktop/ 2024-03-01 12:36:35 +05:30
thirdparty Move into desktop/ 2024-03-01 12:36:35 +05:30
ui@855a58e4df Move into desktop/ 2024-03-01 12:36:35 +05:30
.eslintignore Move into desktop/ 2024-03-01 12:36:35 +05:30
.eslintrc Move into desktop/ 2024-03-01 12:36:35 +05:30
.gitignore Move into desktop/ 2024-03-01 12:36:35 +05:30
.gitmodules Move into desktop/ 2024-03-01 12:36:35 +05:30
.prettierrc.json Move into desktop/ 2024-03-01 12:36:35 +05:30
.yarnrc Move into desktop/ 2024-03-01 12:36:35 +05:30
CHANGELOG.md Move into desktop/ 2024-03-01 12:36:35 +05:30
deployment.md Move into desktop/ 2024-03-01 12:36:35 +05:30
LICENSE Move into desktop/ 2024-03-01 12:36:35 +05:30
package.json Move into desktop/ 2024-03-01 12:36:35 +05:30
README.md Move into desktop/ 2024-03-01 12:36:35 +05:30
SECURITY.md Move into desktop/ 2024-03-01 12:36:35 +05:30
sentry-symbols.js Move into desktop/ 2024-03-01 12:36:35 +05:30
sentry.properties Move into desktop/ 2024-03-01 12:36:35 +05:30
tsconfig.json Move into desktop/ 2024-03-01 12:36:35 +05:30
yarn.lock Move into desktop/ 2024-03-01 12:36:35 +05:30

ente Photos - Desktop

Desktop app for ente.io build with electron and loads of ❤️.

Disclaimer

We are aware that electron is a sub-optimal choice for building desktop applications.

The goal of this app was to

  1. provide a stable environment for customers to back up large amounts of data reliably
  2. export uploaded data from our servers to their local hard drives.

Electron was the best way to reuse our battle tested code from photos-web that powers web.ente.io.

As an archival solution built by a small team, we are hopeful that this project will help us keep our stack lean, while ensuring a painfree life for our customers.

If you are running into issues with this app, please drop a mail to support@ente.io and we'll be very happy to help.

Download

Building from source

You'll need to have node (and yarn) installed on your machine. e.g. on macOS you can do brew install node. After that, you can run the following commands to fetch and build from source.

# Clone this repository
git clone https://github.com/ente-io/photos-desktop

# Go into the repository
cd photos-desktop

# Clone submodules (recursively)
git submodule update --init --recursive

# Install packages
yarn

# Run the app
yarn start

Re-compile automatically

To recompile automatically and to allow using electron-reload, run this in a separate terminal:

yarn watch