Fully open source, End to End Encrypted alternative to Google Photos and Apple Photos
Go to file
2022-11-21 19:48:30 +05:30
.github added build with old certs workflow 2022-09-22 18:37:43 +05:30
.husky setup husky 2022-06-14 11:48:30 +05:30
build Capitalize user visible strings 2022-07-11 18:36:05 +05:30
src Merge branch 'main' into update-electron-to-latest 2022-11-21 18:53:50 +05:30
thirdparty revert submodule next-electron-server to before merging master 2022-09-02 14:07:07 +05:30
ui@6320f0295d update UI 2022-11-16 14:53:37 +05:30
.eslintrc update eslint configuration 2022-06-14 12:13:25 +05:30
.gitignore added web app as submodule 2022-07-13 12:51:37 +05:30
.gitmodules add next-electron-server as submodule 2022-09-02 13:53:19 +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 update type definations and move them to dev dependencies 2022-11-21 19:48:30 +05:30
README.md Remove out of date user contributed ports 2022-09-28 15:06:19 +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 update type definations and move them to dev dependencies 2022-11-21 19:48:30 +05:30

bhari-frame (heavy-frame)

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 bada-frame 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/bhari-frame

# Go into the repository
cd bhari-frame

# 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