Fully open source, End to End Encrypted alternative to Google Photos and Apple Photos
Go to file
2024-01-02 16:57:16 +05:30
.github update node version to 20 2023-11-29 13:01:11 +05:30
.husky block commit on main mistakenly 2023-11-28 13:33:06 +05:30
build add windows ggml binary 2023-11-16 11:21:18 +05:30
src fix unhandled runtime error, and ignore doesn't exist error 2023-12-16 10:27:11 +05:30
thirdparty revert submodule next-electron-server to before merging master 2022-09-02 14:07:07 +05:30
ui@0dc1d138aa update ui 2023-12-16 13:49:47 +05:30
.eslintignore add EOL newline 2023-01-27 16:27:13 +05:30
.eslintrc update eslint configuration 2022-06-14 12:13:25 +05:30
.gitignore remove model from git, and added models folder to git ignore 2023-10-12 18:33:48 +05:30
.gitmodules update submodule to follow release branch 2022-11-30 12:20:07 +05:30
.prettierrc.json update prettier config 2021-12-19 11:53:24 +05:30
.yarnrc add yarnrc to increase network timeout 2022-12-28 17:11:02 +05:30
CHANGELOG.md update changelog 2023-12-16 14:13:37 +05:30
deployment.md added deployment md file with updating electron symbol guide 2023-02-17 20:01:55 +05:30
LICENSE Create LICENSE 2021-04-03 16:44:58 +05:30
package.json add onnxruntime package 2024-01-02 16:57:16 +05:30
README.md Change bhari-frame => photos-desktop in README 2022-12-15 19:30:34 +05:30
SECURITY.md Create SECURITY.md 2022-01-11 20:43:37 +05:30
sentry-symbols.js update sentry symbol js fix get electron version 2022-11-17 15:47:39 +05:30
sentry.properties update project name 2023-03-10 17:43:22 +05:30
tsconfig.json update tsconfig to es2021 2023-01-03 14:09:46 +05:30
yarn.lock add onnxruntime package 2024-01-02 16:57:16 +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