.. | ||
.github/workflows | ||
build | ||
docs | ||
src | ||
.eslintignore | ||
.eslintrc | ||
.gitignore | ||
.prettierrc.json | ||
CHANGELOG.md | ||
package.json | ||
README.md | ||
tsconfig.json | ||
yarn.lock |
Desktop app for Ente Photos
The sweetness of Ente Photos, right on your computer. Linux, Windows and macOS.
You can download a pre-built binary from releases.
To know more about Ente, see our main README or visit ente.io.
Building from source
Fetch submodules
git submodule update --init --recursive
Install dependencies
yarn install
Create a binary for your platform
yarn build
Developing
Instead of building, you can run the app in development mode
yarn dev
Caution
yarn dev
is currently not working (we'll fix soon). If you just want to build from source and use the generated binary, useyarn build
as described above.
This'll launch a development server to serve the pages loaded by the renderer process, and will hot reload on changes.
If you also want hot reload for the main process, run this in a separate terminal:
yarn watch