Fully open source, End to End Encrypted alternative to Google Photos and Apple Photos
Go to file
2023-11-07 06:53:57 +00:00
.github Update to cla-assistant.io for CLA shared across ente 2023-02-16 22:21:09 +05:30
.husky setup husky 2022-06-14 11:48:30 +05:30
build update linux build 2023-10-31 18:16:09 +05:30
src Merge branch 'main' into clip-desktop 2023-11-06 16:19:16 +05:30
thirdparty revert submodule next-electron-server to before merging master 2022-09-02 14:07:07 +05:30
ui@ca5fe7410c update UI 2023-11-07 11:15:48 +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-11-07 12:14: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 v1.6.50 2023-11-07 11:16:04 +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 revert to v25.8.4 2023-10-25 19:46:55 +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