Fully open source, End to End Encrypted alternative to Google Photos and Apple Photos
Go to file
2023-01-12 15:54:31 +05:30
.github updated to use the forked custom action 2023-01-12 15:54:31 +05:30
.husky setup husky 2022-06-14 11:48:30 +05:30
build Merge pull request #113 from ente-io/image-magick-static 2022-12-13 14:10:53 +05:30
src check file exists before reading 2022-12-28 11:28:07 +05:30
thirdparty revert submodule next-electron-server to before merging master 2022-09-02 14:07:07 +05:30
ui@a8c520a4b0 update UI 2022-12-22 13:44:46 +05:30
.eslintrc update eslint configuration 2022-06-14 12:13:25 +05:30
.gitignore Update gitignore to include .env and .electron-symbols/ 2022-12-09 13:20:22 +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
LICENSE Create LICENSE 2021-04-03 16:44:58 +05:30
package.json v1.6.17-alpha.4 2023-01-12 10:15:27 +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 remove sentry cli executable path as we are using next withSentryConfig and which has bundled its own cli and this path is not used and redundant 2022-09-23 16:02:17 +05:30
tsconfig.json rename root source-code directory to src 2022-08-13 13:54:27 +05:30
yarn.lock revert yarn module changes 2022-11-21 19:57:01 +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